boost: Enable parallel compile
[openwrt/svn-archive/archive.git] / ipv6 / aiccu / Makefile
1 #
2 # Copyright (C) 2006-2010 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=aiccu
11 PKG_VERSION:=20070115
12 PKG_RELEASE:=4
13
14 PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://www.sixxs.net/archive/sixxs/aiccu/unix
16 PKG_MD5SUM:=c9bcc83644ed788e22a7c3f3d4021350
17
18 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/aiccu
23 SECTION:=ipv6
24 CATEGORY:=IPv6
25 DEPENDS:=+libpthread +ntpclient +ip +kmod-sit +kmod-tun
26 TITLE:=SixXS Automatic IPv6 Connectivity Client Utility
27 URL:=http://www.sixxs.net/tools/aiccu/
28 endef
29
30 define Build/Configure
31 $(SED) "s,strip,/bin/true," $(PKG_BUILD_DIR)/unix-console/Makefile
32 endef
33
34 define Build/Compile
35 $(MAKE) -C $(PKG_BUILD_DIR) \
36 CC="$(TARGET_CC)" OS_NAME="Linux" OS_VERSION="$(LINUX_VERSION)" \
37 EXTRA_CFLAGS="$(TARGET_CFLAGS)" \
38 EXTRA_LDFLAGS="$(TARGET_LDFLAGS) -pthread" \
39 DEBUG=0
40 endef
41
42 define Package/aiccu/conffiles
43 /etc/config/aiccu
44 endef
45
46 define Package/aiccu/install
47 $(INSTALL_DIR) $(1)/usr/sbin
48 $(INSTALL_BIN) $(PKG_BUILD_DIR)/unix-console/$(PKG_NAME) $(1)/usr/sbin/
49 $(INSTALL_DIR) $(1)/etc/config
50 $(INSTALL_CONF) ./files/aiccu.conf $(1)/etc/config/aiccu
51 $(INSTALL_DIR) $(1)/etc/init.d
52 $(INSTALL_BIN) ./files/aiccu.init $(1)/etc/init.d/aiccu
53 $(INSTALL_DIR) $(1)/etc/hotplug.d/iface
54 $(INSTALL_DATA) ./files/aiccu.hotplug $(1)/etc/hotplug.d/iface/30-aiccu
55 endef
56
57 $(eval $(call BuildPackage,aiccu))