Makefile 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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:= libxml2
  7. PKG_VERSION:= 2.7.2
  8. PKG_RELEASE:= 1
  9. PKG_MD5SUM:= dc43ff7ae6aded45f578c87b7b0c8766
  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,LIBXML2,libxml2,${PKG_VERSION}-${PKG_RELEASE}))
  14. CONFIGURE_STYLE= gnu
  15. CONFIGURE_ARGS+= --without-c14n \
  16. --without-catalog \
  17. --without-debug \
  18. --without-docbook \
  19. --with-html \
  20. --without-ftp \
  21. --without-http \
  22. --without-iconv \
  23. --without-iso8859x \
  24. --without-legacy \
  25. --with-output \
  26. --without-pattern \
  27. --without-push \
  28. --without-python \
  29. --with-reader \
  30. --without-readline \
  31. --without-regexps \
  32. --with-sax1 \
  33. --with-schemas \
  34. --with-threads \
  35. --with-tree \
  36. --with-valid \
  37. --with-writer \
  38. --with-xinclude \
  39. --with-xpath \
  40. --with-xptr \
  41. --with-zlib
  42. BUILD_STYLE= auto
  43. INSTALL_STYLE= auto confprog
  44. post-install:
  45. ${INSTALL_DIR} ${IDIR_LIBXML2}/usr/lib
  46. ${CP} ${WRKINST}/usr/lib/libxml2.so.* ${IDIR_LIBXML2}/usr/lib/
  47. include ${TOPDIR}/mk/pkg-bottom.mk