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