Makefile 889 B

1234567891011121314151617181920212223242526272829
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include ${TOPDIR}/rules.mk
  4. PKG_NAME:= libgcrypt
  5. PKG_VERSION:= 1.4.5
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 325294c12e7b99d82dee3a8bf8c2c28e
  8. PKG_DESCR:= GNU crypto library
  9. PKG_SECTION:= libs
  10. PKG_DEPENDS:= libgpg-error
  11. PKG_BUILDDEP:= libgpg-error
  12. PKG_URL:= http://directory.fsf.org/project/libgcrypt
  13. PKG_SITES:= ftp://ftp.gnupg.org/gcrypt/libgcrypt/
  14. include ${TOPDIR}/mk/package.mk
  15. $(eval $(call PKG_template,LIBGCRYPT,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  16. CONFIGURE_ARGS+= --disable-asm \
  17. --with-gpg-error-prefix="${STAGING_DIR}/usr"
  18. post-install:
  19. ${INSTALL_DIR} ${IDIR_LIBGCRYPT}/usr/lib
  20. ${CP} ${WRKINST}/usr/lib/libgcrypt.so* \
  21. ${IDIR_LIBGCRYPT}/usr/lib/
  22. include ${TOPDIR}/mk/pkg-bottom.mk