Makefile 750 B

1234567891011121314151617181920212223
  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:= 2.2
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 14cc361500d2e768a8a6ec538ce3fecb
  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. include ${TOPDIR}/mk/package.mk
  13. $(eval $(call PKG_template,LIBTASN1,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  14. post-install:
  15. ${INSTALL_DIR} ${IDIR_LIBTASN1}/usr/lib
  16. ${CP} ${WRKINST}/usr/lib/libtasn1.so* ${IDIR_LIBTASN1}/usr/lib
  17. include ${TOPDIR}/mk/pkg-bottom.mk