ABI version is same.
The ipkg size increase by about 2.2%:
old:
47.909 libnftnl11_1.1.3-1_arm_cortex-a7_neon-vfpv4.ipk
new:
48.985 libnftnl11_1.1.4-1_arm_cortex-a7_neon-vfpv4.ipk
Signed-off-by: Konstantin Demin <rockdrilla@gmail.com>
(cherry picked from commit 699955a684)
		
	
		
			
				
	
	
		
			74 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#
 | 
						|
# 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
 | 
						|
PKG_VERSION:=1.1.4
 | 
						|
PKG_RELEASE:=1
 | 
						|
 | 
						|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
 | 
						|
PKG_SOURCE_URL:=https://netfilter.org/projects/$(PKG_NAME)/files
 | 
						|
PKG_HASH:=c8c7988347adf261efac5bba59f8e5f995ffb65f247a88cc144e69620573ed20
 | 
						|
PKG_MAINTAINER:=Steven Barth <steven@midlink.org>
 | 
						|
PKG_LICENSE:=GPL-2.0+
 | 
						|
 | 
						|
PKG_FIXUP:=autoreconf
 | 
						|
 | 
						|
PKG_INSTALL:=1
 | 
						|
 | 
						|
include $(INCLUDE_DIR)/package.mk
 | 
						|
 | 
						|
DISABLE_NLS:=
 | 
						|
 | 
						|
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
 | 
						|
  ABI_VERSION:=11
 | 
						|
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
 | 
						|
 | 
						|
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))
 |