1################################################################################ 2# 3# arptables 4# 5################################################################################ 6 7ARPTABLES_VERSION = 0.0.5 8ARPTABLES_SITE = http://ftp.netfilter.org/pub/arptables 9ARPTABLES_LICENSE = GPL-2.0+ 10ARPTABLES_LICENSE_FILES = COPYING 11 12define ARPTABLES_BUILD_CMDS 13 $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) \ 14 CC="$(TARGET_CC)" COPT_FLAGS="$(TARGET_CFLAGS)" 15endef 16 17define ARPTABLES_INSTALL_TARGET_CMDS 18 $(INSTALL) -m 755 -D $(@D)/arptables-legacy \ 19 $(TARGET_DIR)/usr/sbin/arptables-legacy 20endef 21 22$(eval $(generic-package)) 23