nftables: bump to latest git / all patches upstreamed
[openwrt/staging/yousong.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-08
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:=b3529cf43bba5c3c4cddefa7f5d0143d510fd3ec
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 --disable-debug \
27 --with-mini-gmp \
28 --without-cli \
29
30 define Package/nftables
31 SECTION:=net
32 CATEGORY:=Network
33 SUBMENU:=Firewall
34 TITLE:=nftables packet filtering userspace utility
35 DEPENDS:=+kmod-nft-core +kmod-nft-nat +libnftnl
36 URL:=http://netfilter.org/projects/nftables/
37 endef
38
39 define Package/nftables/install
40 $(INSTALL_DIR) $(1)/usr/sbin
41 $(CP) $(PKG_BUILD_DIR)/src/nft $(1)/usr/sbin/
42 endef
43
44 $(eval $(call BuildPackage,nftables))