nftables: update to 0.8.1
[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.8.1
11 PKG_RELEASE:=1
12
13 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
14 PKG_SOURCE_URL:=https://netfilter.org/projects/$(PKG_NAME)/files
15 PKG_HASH:=8aead66cce70d68c70e4be917813abcbcf62811ee6de4c7761d0e34391772fc4
16 PKG_MAINTAINER:=Steven Barth <steven@midlink.org>
17 PKG_LICENSE:=GPL-2.0
18
19 PKG_FIXUP:=autoreconf
20
21 include $(INCLUDE_DIR)/package.mk
22
23 DISABLE_NLS:=
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))