let ipkg fail when a package file to be installed is not found
[openwrt/staging/wigyori.git] / openwrt / package / aiccu / Makefile
1 # $Id$
2
3 include $(TOPDIR)/rules.mk
4
5 PKG_NAME:=aiccu
6 PKG_VERSION:=2005.01.31
7 PKG_RELEASE:=1
8 PKG_MD5SUM:=7c3da5feab3d59fb5a99a45203e0ca56
9
10 PKG_SOURCE_URL:=http://www.sixxs.net/archive/sixxs/aiccu/unix
11 PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).tar.gz
12 PKG_CAT:=zcat
13
14 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
15
16 include $(TOPDIR)/package/rules.mk
17
18 $(eval $(call PKG_template,AICCU,aiccu,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
19
20 $(PKG_BUILD_DIR)/.configured:
21 $(SED) "s,strip,$(STRIP)," $(PKG_BUILD_DIR)/unix-console/Makefile
22 touch $@
23
24 $(PKG_BUILD_DIR)/.built:
25 $(MAKE) -C $(PKG_BUILD_DIR) \
26 CC=$(TARGET_CC) CFLAGS="$(TARGET_CFLAGS) -D_GNU_SOURCE" DEBUG=0
27 touch $@
28
29 $(IPKG_AICCU):
30 mkdir -p $(IDIR_AICCU)/usr/sbin $(IDIR_AICCU)/etc/init.d
31 install -m 755 $(PKG_BUILD_DIR)/unix-console/$(PKG_NAME) $(IDIR_AICCU)/usr/sbin/
32 install -m 755 ./files/aiccu.init $(IDIR_AICCU)/etc/init.d/S51aiccu
33 install -m 644 $(PKG_BUILD_DIR)/doc/aiccu.conf $(IDIR_AICCU)/etc/aiccu.conf
34 $(STRIP) $(IDIR_AICCU)/usr/sbin/*
35 $(IPKG_BUILD) $(IDIR_AICCU) $(PACKAGE_DIR)
36