Makefile 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  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. ftp://fr.rpmfind.net/pub/libxml/
  15. include ${TOPDIR}/mk/package.mk
  16. $(eval $(call PKG_template,LIBXSLT,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  17. CONFIGURE_ARGS+= --with-libxml-prefix="${STAGING_DIR}/usr" \
  18. --with-libxml-include-prefix="${STAGING_DIR}/usr/include/libxml2" \
  19. --with-libxml-libs-prefix="${STAGING_DIR}/usr/lib" \
  20. --without-python \
  21. --without-crypto \
  22. --without-debug \
  23. --without-mem-debug \
  24. --without-debugger
  25. post-install:
  26. ${INSTALL_DIR} ${IDIR_LIBXSLT}/usr/lib
  27. ${CP} ${WRKINST}/usr/lib/libxslt.so* ${IDIR_LIBXSLT}/usr/lib/
  28. include ${TOPDIR}/mk/pkg-bottom.mk