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.4 KiB

  1. #
  2. # Copyright (C) 2005-2011 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:=libgcrypt
  9. PKG_VERSION:=1.8.5
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
  12. PKG_SOURCE_URL:=https://www.gnupg.org/ftp/gcrypt/libgcrypt/
  13. PKG_HASH:=3b4a2a94cb637eff5bdebbcaf46f4d95c4f25206f459809339cdada0eb577ac3
  14. PKG_MAINTAINER:=W. Michael Petullo <mike@flyn.org>
  15. PKG_CPE_ID:=cpe:/a:gnupg:libgcrypt
  16. PKG_INSTALL:=1
  17. PKG_BUILD_PARALLEL:=1
  18. include $(INCLUDE_DIR)/package.mk
  19. define Package/libgcrypt
  20. SECTION:=libs
  21. CATEGORY:=Libraries
  22. DEPENDS:=+libgpg-error
  23. TITLE:=GNU crypto library
  24. URL:=https://www.gnupg.org/related_software/libgcrypt/
  25. LICENSE:=LGPL-2.1-or-later
  26. LICENSE_FILES:=COPYING.LIB
  27. endef
  28. define Package/libgcrypt/description
  29. This is a general purpose cryptographic library based on the code from
  30. GnuPG. It provides functions for all cryptograhic building blocks:
  31. symmetric ciphers (AES, DES, Arcfour, CAST5), hash algorithms (MD5, SHA-1,
  32. RIPE-MD160, SHA-224/256, SHA-384/512), MACs (HMAC for all hash
  33. algorithms), public key algorithms (RSA, DSA), large integer functions,
  34. random numbers and a lot of supporting functions. Some algorithms have
  35. been disabled to reduce size (Blowfish, Twofish, Serpent,
  36. RC2, SEED, Camellia, CRC, MD4, TIGER-192, Whirlpool, ElGamal, ECC).
  37. endef
  38. CONFIGURE_ARGS += \
  39. --enable-shared \
  40. --enable-static \
  41. --disable-asm \
  42. --disable-doc \
  43. --with-gpg-error-prefix="$(STAGING_DIR)/usr"
  44. TARGET_CFLAGS += $(FPIC)
  45. define Build/InstallDev
  46. $(INSTALL_DIR) $(1)/usr/bin $(2)/bin $(1)/usr/include $(1)/usr/lib $(1)/usr/share/aclocal
  47. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/libgcrypt-config $(1)/usr/bin/
  48. $(CP) $(PKG_INSTALL_DIR)/usr/include/gcrypt*.h $(1)/usr/include/
  49. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libgcrypt.{la,a,so*} $(1)/usr/lib/
  50. $(CP) $(PKG_INSTALL_DIR)/usr/share/aclocal/libgcrypt.m4 $(1)/usr/share/aclocal/
  51. $(SED) 's,^libdir=\"$$$${exec_prefix}/lib,libdir=\"$(STAGING_DIR)/usr/lib,g' $(1)/usr/bin/libgcrypt-config
  52. $(SED) 's,^includedir=\"$$$${prefix}/include/,includedir=\"$(STAGING_DIR)/usr/include/,g' $(1)/usr/bin/libgcrypt-config
  53. ln -sf $(STAGING_DIR)/usr/bin/libgcrypt-config $(2)/bin/
  54. endef
  55. define Package/libgcrypt/install
  56. $(INSTALL_DIR) $(1)/usr/lib
  57. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libgcrypt.so.* $(1)/usr/lib/
  58. endef
  59. $(eval $(call BuildPackage,libgcrypt))