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.

71 lines
2.3 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.9.4
  10. PKG_RELEASE:=$(AUTORELEASE)
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
  12. PKG_SOURCE_URL:=https://www.gnupg.org/ftp/gcrypt/libgcrypt/
  13. PKG_HASH:=ea849c83a72454e3ed4267697e8ca03390aee972ab421e7df69dfe42b65caaf7
  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,^\(prefix\|exec_prefix\)=.*,\1=$(STAGING_DIR)/usr,g' $(1)/usr/bin/libgcrypt-config
  52. $(LN) ../../usr/bin/libgcrypt-config $(2)/bin/libgcrypt-config
  53. endef
  54. define Package/libgcrypt/install
  55. $(INSTALL_DIR) $(1)/usr/lib
  56. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libgcrypt.so.* $(1)/usr/lib/
  57. endef
  58. $(eval $(call BuildPackage,libgcrypt))