Makefile 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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.3
  8. PKG_RELEASE:= 1
  9. PKG_MD5SUM:= 8f4fda3969237c2a33bdb1583b5d06b2
  10. PKG_DESCR:= XML C parser and toolkit
  11. PKG_SECTION:= libs
  12. PKG_DEPENDS:= zlib
  13. PKG_URL:= http://www.xmlsoft.org/
  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,LIBXML2,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  18. CONFIGURE_STYLE= gnu
  19. CONFIGURE_ARGS+= --without-c14n \
  20. --without-catalog \
  21. --without-debug \
  22. --without-docbook \
  23. --with-html \
  24. --without-ftp \
  25. --without-http \
  26. --without-iconv \
  27. --without-iso8859x \
  28. --without-legacy \
  29. --with-output \
  30. --without-pattern \
  31. --without-push \
  32. --without-python \
  33. --with-reader \
  34. --without-readline \
  35. --without-regexps \
  36. --with-sax1 \
  37. --with-schemas \
  38. --with-threads \
  39. --with-tree \
  40. --with-valid \
  41. --with-writer \
  42. --with-xinclude \
  43. --with-xpath \
  44. --with-xptr \
  45. --with-zlib
  46. BUILD_STYLE= auto
  47. INSTALL_STYLE= auto confprog
  48. post-install:
  49. ${INSTALL_DIR} ${IDIR_LIBXML2}/usr/lib
  50. ${CP} ${WRKINST}/usr/lib/libxml2.so.* ${IDIR_LIBXML2}/usr/lib/
  51. include ${TOPDIR}/mk/pkg-bottom.mk