Makefile 1.0 KB

1234567891011121314151617181920212223242526272829303132
  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:= libgpg-error
  5. PKG_VERSION:= 1.5
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 8599b96c911b1df1be24a6ff4ec3c364
  8. PKG_DESCR:= an helper library for common error codes and descriptions
  9. PKG_SECTION:= libs
  10. PKG_URL:= http://www.gnupg.org
  11. PKG_SITES:= ftp://ftp.gnupg.org/gcrypt/libgpg-error/ \
  12. http://mirrors.rootmode.com/ftp.gnupg.org/libgpg-error/ \
  13. http://gulus.usherbrooke.ca/pub/appl/GnuPG/libgpg-error/ \
  14. http://gnupg.unixmexico.org/ftp/libgpg-error/
  15. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
  16. include ${TOPDIR}/mk/package.mk
  17. $(eval $(call PKG_template,LIBGPG_ERROR,libgpg-error,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  18. CONFIGURE_STYLE= gnu
  19. BUILD_STYLE= auto
  20. INSTALL_STYLE= auto confprog
  21. post-install:
  22. ${INSTALL_DIR} ${IDIR_LIBGPG_ERROR}/usr/lib
  23. ${CP} ${WRKINST}/usr/lib/libgpg-error.so.* ${IDIR_LIBGPG_ERROR}/usr/lib/
  24. include ${TOPDIR}/mk/pkg-bottom.mk