source: freewrt/package/aiccu/Makefile@ 4486a95

freewrt_1_0 freewrt_2_0
Last change on this file since 4486a95 was 475ad56, checked in by Waldemar Brodkorb <wbx@…>, 20 years ago

add OpenWrt trunk revision 3830.

git-svn-id: svn://www.freewrt.org/trunk/freewrt@1 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 1.1 KB
Line 
1# $Id: Makefile 947 2005-05-19 05:28:28Z nico $
2
3include $(TOPDIR)/rules.mk
4
5PKG_NAME:=aiccu
6PKG_VERSION:=2005.01.31
7PKG_RELEASE:=1
8PKG_MD5SUM:=7c3da5feab3d59fb5a99a45203e0ca56
9
10PKG_SOURCE_URL:=http://www.sixxs.net/archive/sixxs/aiccu/unix
11PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).tar.gz
12PKG_CAT:=zcat
13
14PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
15
16include $(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
Note: See TracBrowser for help on using the repository browser.