libnftnl: bump to version 1.1.3
[openwrt/staging/mkresin.git] / package / libs / libnftnl / Makefile
1 #
2 # Copyright (C) 2014 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=libnftnl
11 PKG_VERSION:=1.1.3
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_URL:=https://netfilter.org/projects/$(PKG_NAME)/files
16 PKG_HASH:=22dd97d3b06ae8c67499506e2bfd6803ce116479076ec3700e7a4c7cd9fcba0f
17 PKG_MAINTAINER:=Steven Barth <steven@midlink.org>
18 PKG_LICENSE:=GPL-2.0+
19
20 PKG_FIXUP:=autoreconf
21
22 PKG_INSTALL:=1
23
24 include $(INCLUDE_DIR)/package.mk
25
26 DISABLE_NLS:=
27
28 define Package/libnftnl
29 SECTION:=libs
30 CATEGORY:=Libraries
31 DEPENDS:=+libmnl
32 TITLE:=Low-level netlink library for the nf_tables subsystem
33 URL:=http://www.netfilter.org/projects/libnftnl
34 ABI_VERSION:=11
35 endef
36
37 define Package/libnftnl/description
38 libnftnl is a userspace library providing a low-level netlink
39 programming interface (API) to the in-kernel nf_tables subsystem.
40 endef
41
42 TARGET_CFLAGS += $(FPIC)
43
44 CONFIGURE_ARGS += \
45 --enable-static \
46 --enable-shared \
47 --without-json-parsing
48
49 define Build/InstallDev
50 $(INSTALL_DIR) $(1)/usr/include/libnftnl
51 $(CP) \
52 $(PKG_INSTALL_DIR)/usr/include/libnftnl/*.h \
53 $(1)/usr/include/libnftnl/
54
55 $(INSTALL_DIR) $(1)/usr/lib
56 $(CP) \
57 $(PKG_INSTALL_DIR)/usr/lib/libnftnl.{so*,a,la} \
58 $(1)/usr/lib/
59
60 $(INSTALL_DIR) $(1)/usr/lib/pkgconfig
61 $(CP) \
62 $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libnftnl.pc \
63 $(1)/usr/lib/pkgconfig/
64 endef
65
66 define Package/libnftnl/install
67 $(INSTALL_DIR) $(1)/usr/lib
68 $(CP) \
69 $(PKG_INSTALL_DIR)/usr/lib/libnftnl.so.* \
70 $(1)/usr/lib/
71 endef
72
73 $(eval $(call BuildPackage,libnftnl))