Makefile 933 B

12345678910111213141516171819202122232425262728
  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 ${ADK_TOPDIR}/rules.mk
  4. PKG_NAME:= libgpg-error
  5. PKG_VERSION:= 1.21
  6. PKG_RELEASE:= 1
  7. PKG_HASH:= b7dbdb3cad63a740e9f0c632a1da32d4afdb694ec86c8625c98ea0691713b84d
  8. PKG_DESCR:= helper library for common error codes and descriptions
  9. PKG_SECTION:= libs/misc
  10. PKG_URL:= http://www.gnupg.org/
  11. PKG_SITES:= ftp://ftp.gnupg.org/gcrypt/libgpg-error/
  12. PKG_OPTS:= dev
  13. PKG_NOPARALLEL:= 1
  14. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
  15. include ${ADK_TOPDIR}/mk/package.mk
  16. $(eval $(call PKG_template,LIBGPG_ERROR,libgpg-error,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  17. libgpg-error-install:
  18. ${INSTALL_DIR} ${IDIR_LIBGPG_ERROR}/usr/lib
  19. ${CP} ${WRKINST}/usr/lib/libgpg-error.so* \
  20. ${IDIR_LIBGPG_ERROR}/usr/lib
  21. include ${ADK_TOPDIR}/mk/pkg-bottom.mk