You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 lines
1.9 KiB

  1. #
  2. # Copyright (C) 2015 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=libnetfilter_cthelper
  9. PKG_VERSION:=1.0.0
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
  12. PKG_SOURCE_URL:= \
  13. http://www.netfilter.org/projects/libnetfilter_cthelper/files/ \
  14. ftp://ftp.netfilter.org/pub/libnetfilter_cthelper/ \
  15. http://mirrors.evolva.ro/netfilter.org/libnetfilter_cthelper/
  16. PKG_MD5SUM:=b2efab1a3a198a5add448960ba011acd
  17. PKG_LICENSE:=GPL-2.0+
  18. PKG_LICENSE_FILES:=COPYING
  19. PKG_MAINTAINER:=Nicolas Thill <nico@openwrt.org>
  20. PKG_FIXUP:=autoreconf
  21. PKG_INSTALL:=1
  22. include $(INCLUDE_DIR)/package.mk
  23. define Package/libnetfilter-cthelper
  24. CATEGORY:=Libraries
  25. SECTION:=libs
  26. TITLE:=API to connection tracking helper infrastructure
  27. URL:=http://www.netfilter.org/projects/libnetfilter_cthelper/
  28. DEPENDS:=+libmnl
  29. endef
  30. define Package/libnetfilter-cthelper/description
  31. libnetfilter_cthelper is the userspace library that provides the programming
  32. interface to the user-space helper infrastructure available since Linux kernel
  33. 3.6.
  34. With this library, you register, configure, enable and disable user-space
  35. helpers.
  36. endef
  37. TARGET_CFLAGS += $(FPIC)
  38. CONFIGURE_ARGS += \
  39. --enable-static \
  40. --enable-shared \
  41. define Build/InstallDev
  42. $(INSTALL_DIR) $(1)/usr/include
  43. $(CP) \
  44. $(PKG_INSTALL_DIR)/usr/include/libnetfilter_cthelper \
  45. $(1)/usr/include/
  46. $(INSTALL_DIR) $(1)/usr/lib
  47. $(CP) \
  48. $(PKG_INSTALL_DIR)/usr/lib/libnetfilter_cthelper*.{a,la,so*} \
  49. $(1)/usr/lib/
  50. $(INSTALL_DIR) $(1)/usr/lib/pkgconfig
  51. $(CP) \
  52. $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libnetfilter_cthelper.pc \
  53. $(1)/usr/lib/pkgconfig/
  54. endef
  55. define Package/libnetfilter-cthelper/install
  56. $(INSTALL_DIR) $(1)/usr/lib
  57. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libnetfilter_cthelper*.so.* $(1)/usr/lib/
  58. endef
  59. $(eval $(call BuildPackage,libnetfilter-cthelper))