Makefile 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  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:= libxslt
  5. PKG_VERSION:= 1.1.24
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= e83ec5d27fc4c10c6f612879bea9a153
  8. PKG_DESCR:= XSLT Library
  9. PKG_SECTION:= libs
  10. PKG_DEPENDS:= libxml2
  11. PKG_BUILDDEP:= libxml2
  12. PKG_URL:= http://xmlsoft.org/XSLT
  13. PKG_SITES:= http://xmlsoft.org/sources/
  14. include ${TOPDIR}/mk/package.mk
  15. $(eval $(call PKG_template,LIBXSLT,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  16. CONFIGURE_ARGS+= --with-libxml-prefix="${STAGING_DIR}/usr" \
  17. --with-libxml-include-prefix="${STAGING_DIR}/usr/include/libxml2" \
  18. --with-libxml-libs-prefix="${STAGING_DIR}/usr/lib" \
  19. --without-python \
  20. --without-crypto \
  21. --without-debug \
  22. --without-mem-debug \
  23. --without-debugger
  24. post-install:
  25. ${INSTALL_DIR} ${IDIR_LIBXSLT}/usr/lib
  26. ${CP} ${WRKINST}/usr/lib/libxslt.so* ${IDIR_LIBXSLT}/usr/lib/
  27. include ${TOPDIR}/mk/pkg-bottom.mk