Makefile 1.1 KB

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