Makefile 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. # $Id$
  2. #-
  3. # This file is part of the OpenADK project. OpenADK is copyrighted
  4. # material, please see the LICENCE file in the top-level directory.
  5. include ${TOPDIR}/rules.mk
  6. PKG_NAME:= libgpg-error
  7. PKG_VERSION:= 1.5
  8. PKG_RELEASE:= 1
  9. PKG_MD5SUM:= 8599b96c911b1df1be24a6ff4ec3c364
  10. PKG_DESCR:= an helper library for common error codes and descriptions
  11. PKG_SECTION:= libs
  12. PKG_URL:= http://www.gnupg.org
  13. PKG_SITES:= ftp://ftp.gnupg.org/gcrypt/libgpg-error/ \
  14. http://mirrors.rootmode.com/ftp.gnupg.org/libgpg-error/ \
  15. http://gulus.usherbrooke.ca/pub/appl/GnuPG/libgpg-error/ \
  16. http://gnupg.unixmexico.org/ftp/libgpg-error/
  17. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
  18. include ${TOPDIR}/mk/package.mk
  19. $(eval $(call PKG_template,LIBGPG_ERROR,libgpg-error,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  20. CONFIGURE_STYLE= gnu
  21. BUILD_STYLE= auto
  22. INSTALL_STYLE= auto confprog
  23. post-install:
  24. ${INSTALL_DIR} ${IDIR_LIBGPG_ERROR}/usr/lib
  25. ${CP} ${WRKINST}/usr/lib/libgpg-error.so.* ${IDIR_LIBGPG_ERROR}/usr/lib/
  26. include ${TOPDIR}/mk/pkg-bottom.mk