source: freewrt/package/aiccu/Makefile@ ed2dd9f

freewrt_1_0 freewrt_2_0
Last change on this file since ed2dd9f was ed2dd9f, checked in by Thorsten Glaser <tg@…>, 19 years ago

instead of setting WRKBUILD, set WRKSRC and let WRKBUILD?=WRKSRC like mirports
(WRKSRC isn't used anywhere though)

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

  • Property mode set to 100644
File size: 1.0 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
12
13WRKSRC:=${WRKDIR}/$(PKG_NAME)
14
15include $(TOPDIR)/package/rules.mk
16
17$(eval $(call PKG_template,AICCU,aiccu,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
18
19$(WRKBUILD)/.configured:
20 $(SED) "s,strip,$(STRIP)," $(WRKBUILD)/unix-console/Makefile
21 touch $@
22
23$(WRKBUILD)/.built:
24 $(MAKE) -C $(WRKBUILD) \
25 CC=$(TARGET_CC) CFLAGS="$(TARGET_CFLAGS) -D_GNU_SOURCE" DEBUG=0
26 touch $@
27
28$(IPKG_AICCU):
29 mkdir -p $(IDIR_AICCU)/usr/sbin $(IDIR_AICCU)/etc/init.d
30 install -m 755 $(WRKBUILD)/unix-console/$(PKG_NAME) $(IDIR_AICCU)/usr/sbin/
31 install -m 755 ./files/aiccu.init $(IDIR_AICCU)/etc/init.d/S51aiccu
32 install -m 644 $(WRKBUILD)/doc/aiccu.conf $(IDIR_AICCU)/etc/aiccu.conf
33 $(STRIP) $(IDIR_AICCU)/usr/sbin/*
34 $(IPKG_BUILD) $(IDIR_AICCU) $(PACKAGE_DIR)
35
Note: See TracBrowser for help on using the repository browser.