5816aa0f9f839d5569ad9282f4302658f9ee9b28
[openwrt/openwrt.git] / package / network / utils / nftables / Makefile
1 # Copyright (C) 2015 OpenWrt.org
2 #
3 # This is free software, licensed under the GNU General Public License v2.
4 # See /LICENSE for more information.
5 #
6
7 include $(TOPDIR)/rules.mk
8
9 PKG_NAME:=nftables
10 PKG_VERSION:=0.4+2015-01-12
11 PKG_RELEASE:=1
12
13 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
14 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
15 PKG_SOURCE_URL:=git://git.netfilter.org/nftables
16 PKG_SOURCE_PROTO:=git
17 PKG_SOURCE_VERSION:=b17e27f472adc2e82582d90df0111d5b95c8afe0
18 PKG_MAINTAINER:=Steven Barth <steven@midlink.org>
19 PKG_LICENSE:=GPL-2.0
20
21 PKG_FIXUP:=autoreconf
22
23 include $(INCLUDE_DIR)/package.mk
24
25 CONFIGURE_ARGS += \
26 --with-mini-gmp \
27 --without-cli \
28
29 define Package/nftables
30 SECTION:=net
31 CATEGORY:=Network
32 SUBMENU:=Firewall
33 TITLE:=nftables packet filtering userspace utility
34 DEPENDS:=+kmod-nft-core +kmod-nft-nat +libnftnl
35 URL:=http://netfilter.org/projects/nftables/
36 endef
37
38 define Package/nftables/install
39 $(INSTALL_DIR) $(1)/usr/sbin
40 $(CP) $(PKG_BUILD_DIR)/src/nft $(1)/usr/sbin/
41 endef
42
43 $(eval $(call BuildPackage,nftables))