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
2.1 KiB

  1. #
  2. # Copyright (C) 2011-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. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=p11-kit
  9. PKG_VERSION:=0.23.18.1
  10. PKG_RELEASE:=2
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=https://github.com/p11-glue/p11-kit/releases/download/$(PKG_VERSION)
  13. PKG_HASH:=34c3bd8c0050dd7c4e6228aecf0f168de0a1b34562ddbf74a1c70904c2523c6f
  14. PKG_MAINTAINER:=Nikos Mavrogiannopoulos <n.mavrogiannopoulos@gmail.com>
  15. PKG_LICENSE:=BSD-3-Clause
  16. PKG_LICENSE_FILES:=COPYING
  17. PKG_BUILD_PARALLEL:=1
  18. PKG_INSTALL:=1
  19. include $(INCLUDE_DIR)/package.mk
  20. define Package/p11-kit
  21. SECTION:=libs
  22. CATEGORY:=Libraries
  23. TITLE:=A library that provides a way to load and enumerate PKCS11 modules.
  24. URL:=https://p11-glue.github.io/p11-glue/p11-kit.html
  25. DEPENDS:=+libtasn1 +libpthread
  26. endef
  27. define Package/p11-kit/description
  28. Provides a way to load and enumerate PKCS11 modules. Provides a
  29. standard configuration setup for installing PKCS11 modules in such a
  30. way that they are discoverable.
  31. endef
  32. TARGET_LDFLAGS += -Wl,--gc-sections,--as-needed
  33. CONFIGURE_ARGS+= \
  34. --disable-debug \
  35. --disable-rpath \
  36. --disable-trust-module \
  37. --without-libffi \
  38. --without-systemd
  39. CONFIGURE_VARS += \
  40. ac_cv_have_decl_program_invocation_short_name=yes
  41. define Build/InstallDev
  42. $(INSTALL_DIR) $(1)/usr/include/p11-kit-1/p11-kit/
  43. $(CP) $(PKG_INSTALL_DIR)/usr/include/p11-kit-1/p11-kit/* $(1)/usr/include/p11-kit-1/p11-kit/
  44. $(INSTALL_DIR) $(1)/usr/lib
  45. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libp11-kit.so $(1)/usr/lib/
  46. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libp11-kit.so* $(1)/usr/lib/
  47. $(INSTALL_DIR) $(1)/usr/lib/pkgconfig/
  48. $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/p11-kit-1.pc $(1)/usr/lib/pkgconfig/p11-kit-1.pc
  49. endef
  50. define Package/p11-kit/install
  51. $(INSTALL_DIR) $(1)/usr/lib
  52. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libp11-kit.so.* $(1)/usr/lib/
  53. $(INSTALL_DIR) $(1)/etc/p11-kit/modules/
  54. ifneq ($(CONFIG_PACKAGE_libopensc),)
  55. $(CP) ./files/opensc.module $(1)/etc/p11-kit/modules/
  56. endif
  57. endef
  58. $(eval $(call BuildPackage,p11-kit))