source: freewrt/package/arptables/Makefile@ d419478

freewrt_1_0 freewrt_2_0
Last change on this file since d419478 was d419478, checked in by Thorsten Glaser <tg@…>, 19 years ago
  • whitespace cleanup, while here
  • move WRKDIR and DISTFILES definition into PKG_template
  • define WRKDIR via parent BUILD_DIR instead of going up from WRKSRC
  • use a sub-directory as WRKDIR, like BSD
  • rename PKG_BUILD_DIR into WRKBUILD
  • define WRKBUILD relative via WRKDIR
  • rename PKG_INSTALL_DIR into WRKINST
  • fix a few dependencies
  • make use of common cases in the definition of WRKBUILD and WRKINST, removing many redundant lines
  • use WRKDIR instead of BUILD_DIR in places where the latter was used previously
  • while here, remove PKG_CAT stuff

this only affects packages, for now

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

  • Property mode set to 100644
File size: 834 bytes
Line 
1# $Id: Makefile 2301 2005-10-25 03:12:26Z nico $
2
3include $(TOPDIR)/rules.mk
4
5PKG_NAME:=arptables
6PKG_VERSION:=0.0.3
7PKG_RELEASE:=1
8PKG_MD5SUM:=1672244603c8979577aa4738be35a759
9PKG_SOURCE_URL:=@SF/ebtables
10PKG_SOURCE:=$(PKG_NAME)-v$(PKG_VERSION).tar.gz
11WRKBUILD:=${WRKDIR}/$(PKG_NAME)-v$(PKG_VERSION)
12
13include $(TOPDIR)/package/rules.mk
14
15$(eval $(call PKG_template,ARPTABLES,arptables,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
16
17$(WRKBUILD)/.configured:
18 touch $@
19
20$(WRKBUILD)/.built:
21 $(MAKE) -C $(WRKBUILD) \
22 CC=$(TARGET_CC) LD=$(TARGET_CROSS)ld \
23 COPT_FLAGS="$(TARGET_CFLAGS)" \
24 KERNEL_DIR="./include/linux"
25 touch $@
26
27$(IPKG_ARPTABLES):
28 install -d -m0755 $(IDIR_ARPTABLES)/usr/sbin
29 install -m0755 $(WRKBUILD)/arptables $(IDIR_ARPTABLES)/usr/sbin/
30 $(RSTRIP) $(IDIR_ARPTABLES)
31 $(IPKG_BUILD) $(IDIR_ARPTABLES) $(PACKAGE_DIR)
Note: See TracBrowser for help on using the repository browser.