2014-09-17 20:10:57 +08:00
|
|
|
#
|
|
|
|
# Copyright (C) 2014 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=libnftnl
|
2016-10-10 05:50:16 +08:00
|
|
|
PKG_VERSION:=1.0.6
|
2014-09-17 20:10:57 +08:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
2016-10-04 20:28:54 +08:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
2014-09-17 20:10:57 +08:00
|
|
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
PKG_SOURCE_URL:=git://git.netfilter.org/libnftnl
|
|
|
|
PKG_SOURCE_PROTO:=git
|
2016-10-10 05:50:16 +08:00
|
|
|
PKG_SOURCE_VERSION:=libnftnl-1.0.6
|
2016-12-17 00:32:10 +08:00
|
|
|
PKG_MIRROR_HASH:=c9e066e3fd29951cbe96d2898b4d6cdcfe802b3a4f09f8273a508e7a0a20a357
|
2014-09-17 20:10:57 +08:00
|
|
|
PKG_MAINTAINER:=Steven Barth <steven@midlink.org>
|
2014-11-02 20:20:54 +08:00
|
|
|
PKG_LICENSE:=GPL-2.0+
|
2014-09-17 20:10:57 +08:00
|
|
|
|
|
|
|
PKG_FIXUP:=autoreconf
|
|
|
|
|
|
|
|
PKG_INSTALL:=1
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/libnftnl
|
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
|
|
|
DEPENDS:=+libmnl
|
|
|
|
TITLE:=Low-level netlink library for the nf_tables subsystem
|
|
|
|
URL:=http://www.netfilter.org/projects/libnftnl
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libnftnl/description
|
|
|
|
libnftnl is a userspace library providing a low-level netlink
|
|
|
|
programming interface (API) to the in-kernel nf_tables subsystem.
|
|
|
|
endef
|
|
|
|
|
|
|
|
TARGET_CFLAGS += $(FPIC)
|
|
|
|
|
|
|
|
CONFIGURE_ARGS += \
|
|
|
|
--enable-static \
|
|
|
|
--enable-shared \
|
|
|
|
--without-json-parsing \
|
|
|
|
--without-xml-parsing \
|
|
|
|
|
|
|
|
define Build/InstallDev
|
|
|
|
$(INSTALL_DIR) $(1)/usr/include/libnftnl
|
|
|
|
$(CP) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/include/libnftnl/*.h \
|
|
|
|
$(1)/usr/include/libnftnl/
|
|
|
|
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(CP) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/libnftnl.{so*,a,la} \
|
|
|
|
$(1)/usr/lib/
|
|
|
|
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
|
|
|
$(CP) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libnftnl.pc \
|
|
|
|
$(1)/usr/lib/pkgconfig/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libnftnl/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(CP) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/libnftnl.so.* \
|
|
|
|
$(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,libnftnl))
|