Makefile 1.1 KB

12345678910111213141516171819202122232425262728293031
  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:= libtasn1
  5. PKG_VERSION:= 1.1
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 93b43cc5013bda4d8bf64508f1566c54
  8. PKG_DESCR:= an ASN.1 and DER structures manipulation library
  9. PKG_SECTION:= libs
  10. PKG_URL:= http://www.gnupg.org
  11. PKG_SITES:= ftp://ftp.gnutls.org/pub/gnutls/libtasn1/ \
  12. ftp://ftp.gnupg.org/gcrypt/alpha/gnutls/libtasn1/ \
  13. http://www.mirrors.wiretapped.net/security/network-securitygnutls/libtasn1/ \
  14. ftp://ftp.mirrors.wiretapped.net/pub/security/network-security/gnutls/libtasn1/ \
  15. http://josefsson.org/gnutls/releases/libtasn1/
  16. include ${TOPDIR}/mk/package.mk
  17. $(eval $(call PKG_template,LIBTASN1,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  18. CONFIGURE_STYLE= gnu
  19. BUILD_STYLE= auto
  20. INSTALL_STYLE= auto
  21. post-install:
  22. ${INSTALL_DIR} ${IDIR_LIBTASN1}/usr/lib
  23. ${CP} ${WRKINST}/usr/lib/libtasn1.so.* ${IDIR_LIBTASN1}/usr/lib
  24. include ${TOPDIR}/mk/pkg-bottom.mk