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.

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