2015-01-08 11:31:36 +00:00
|
|
|
# Copyright (C) 2015 OpenWrt.org
|
2014-09-17 12:11:06 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=nftables
|
2018-06-12 07:49:50 +00:00
|
|
|
PKG_VERSION:=0.9.0
|
2015-01-20 13:42:47 +00:00
|
|
|
PKG_RELEASE:=1
|
2014-09-17 12:11:06 +00:00
|
|
|
|
2017-12-20 17:22:52 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
|
|
PKG_SOURCE_URL:=https://netfilter.org/projects/$(PKG_NAME)/files
|
2018-06-12 07:49:50 +00:00
|
|
|
PKG_HASH:=ad8181b5fcb9ca572f444bed54018749588522ee97e4c21922648bb78d7e7e91
|
2014-09-17 12:11:06 +00:00
|
|
|
PKG_MAINTAINER:=Steven Barth <steven@midlink.org>
|
2014-10-21 20:00:56 +00:00
|
|
|
PKG_LICENSE:=GPL-2.0
|
2014-09-17 12:11:06 +00:00
|
|
|
|
|
|
|
PKG_FIXUP:=autoreconf
|
2018-05-15 03:42:29 +00:00
|
|
|
PKG_INSTALL:=1
|
2014-09-17 12:11:06 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2017-12-20 17:22:52 +00:00
|
|
|
DISABLE_NLS:=
|
|
|
|
|
2014-10-06 06:24:53 +00:00
|
|
|
CONFIGURE_ARGS += \
|
2018-05-15 03:42:29 +00:00
|
|
|
--disable-debug \
|
|
|
|
--disable-man-doc \
|
2015-01-08 11:31:36 +00:00
|
|
|
--with-mini-gmp \
|
2014-10-21 20:00:56 +00:00
|
|
|
--without-cli \
|
2014-10-06 06:24:53 +00:00
|
|
|
|
2014-09-17 12:11:06 +00:00
|
|
|
define Package/nftables
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
|
|
|
SUBMENU:=Firewall
|
|
|
|
TITLE:=nftables packet filtering userspace utility
|
2018-01-25 17:11:37 +00:00
|
|
|
DEPENDS:=+kmod-nft-core +libnftnl
|
2014-09-17 12:11:06 +00:00
|
|
|
URL:=http://netfilter.org/projects/nftables/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/nftables/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
2018-05-15 03:42:29 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/nft $(1)/usr/sbin/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/*.so* $(1)/usr/lib/
|
2014-09-17 12:11:06 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,nftables))
|