1ec7de4ad2b112055f7a3780aa81f7b7552e88a3
[openwrt/svn-archive/archive.git] / 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:=2006.07.25
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:=0df76e92eb34f4ce8aa3cfcf6896f271
18 PKG_CAT:=zcat
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/aiccu
25 SECTION:=ipv6
26 CATEGORY:=IPv6
27 TITLE:=SixXS Automatic IPv6 Connectivity Client Utility
28 URL:=http://www.sixxs.net/archive/sixxs/aiccu/unix
29 endef
30
31 define Build/Configure
32 $(SED) "s,strip,$(STRIP)," $(PKG_BUILD_DIR)/unix-console/Makefile
33 endef
34
35 define Build/Compile
36 $(MAKE) -C $(PKG_BUILD_DIR) \
37 CC="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS) -D_GNU_SOURCE -I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
38 LDFLAGS="-lpthread" DEBUG=0
39 endef
40
41 define Package/aiccu/install
42 $(INSTALL_DIR) $(1)/usr/sbin
43 $(INSTALL_BIN) $(PKG_BUILD_DIR)/unix-console/$(PKG_NAME) $(1)/usr/sbin/
44 $(INSTALL_DIR) $(1)/etc
45 install -m 644 $(PKG_BUILD_DIR)/doc/aiccu.conf $(1)/etc/
46 $(INSTALL_DIR) $(1)/etc/init.d
47 $(INSTALL_BIN) ./files/aiccu.init $(1)/etc/init.d/aiccu
48 endef
49
50 $(eval $(call BuildPackage,aiccu))