Makefile 997 B

1234567891011121314151617181920212223242526272829303132333435
  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. MASTER_SITES:= http://xmlsoft.org/sources/ \
  11. ftp://fr.rpmfind.net/pub/libxml/
  12. include ${TOPDIR}/mk/package.mk
  13. $(eval $(call PKG_template,LIBXSLT,libxslt,${PKG_VERSION}-${PKG_RELEASE}))
  14. CONFIGURE_STYLE= gnu
  15. CONFIGURE_ARGS+= --with-libxml-prefix="${STAGING_DIR}/usr" \
  16. --with-libxml-include-prefix="${STAGING_DIR}/usr/include/libxml2" \
  17. --with-libxml-libs-prefix="${STAGING_DIR}/usr/lib" \
  18. --without-python \
  19. --without-crypto \
  20. --without-debug \
  21. --without-mem-debug \
  22. --without-debugger
  23. BUILD_STYLE= auto
  24. INSTALL_STYLE= auto confprog
  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