2006-10-30 13:51:50 +00:00
|
|
|
#
|
2006-07-30 15:51:45 +00:00
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=aiccu
|
2006-11-19 22:30:19 +00:00
|
|
|
PKG_VERSION:=2006.07.25
|
2006-07-30 15:51:45 +00:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).tar.gz
|
2006-10-19 18:33:55 +00:00
|
|
|
PKG_SOURCE_URL:=http://www.sixxs.net/archive/sixxs/aiccu/unix
|
2006-11-19 22:30:19 +00:00
|
|
|
PKG_MD5SUM:=0df76e92eb34f4ce8aa3cfcf6896f271
|
2006-07-30 15:51:45 +00:00
|
|
|
PKG_CAT:=zcat
|
|
|
|
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/aiccu
|
2006-10-19 18:33:55 +00:00
|
|
|
SECTION:=ipv6
|
|
|
|
CATEGORY:=IPv6
|
2006-07-30 15:51:45 +00:00
|
|
|
TITLE:=SixXS Automatic IPv6 Connectivity Client Utility
|
|
|
|
URL:=http://www.sixxs.net/archive/sixxs/aiccu/unix
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
2006-10-19 18:33:55 +00:00
|
|
|
$(SED) "s,strip,$(STRIP)," $(PKG_BUILD_DIR)/unix-console/Makefile
|
2006-07-30 15:51:45 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
2006-10-14 13:58:37 +00:00
|
|
|
CC="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS) -D_GNU_SOURCE" LDFLAGS="-lpthread" DEBUG=0
|
2006-07-30 15:51:45 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/aiccu/install
|
2006-10-19 18:33:55 +00:00
|
|
|
install -d -m0755 $(1)/usr/sbin
|
2006-07-30 15:51:45 +00:00
|
|
|
install -m 755 $(PKG_BUILD_DIR)/unix-console/$(PKG_NAME) $(1)/usr/sbin/
|
2006-10-19 18:33:55 +00:00
|
|
|
install -d -m0755 $(1)/etc
|
|
|
|
install -m 644 $(PKG_BUILD_DIR)/doc/aiccu.conf $(1)/etc/
|
|
|
|
install -d -m0755 $(1)/etc/init.d
|
2006-10-15 21:03:30 +00:00
|
|
|
install -m 755 ./files/aiccu.init $(1)/etc/init.d/aiccu
|
2006-07-30 15:51:45 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,aiccu))
|