Makefile 1.5 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:= curl
  7. PKG_VERSION:= 7.19.0
  8. PKG_RELEASE:= 1
  9. PKG_MD5SUM:= 35f51ac7bcff689b2d2d6e38a3c4d1ae
  10. MASTER_SITES:= http://curl.haxx.se/download/ \
  11. http://www.mirrorspace.org/curl/ \
  12. http://curl.mirror.internet.tp/download/ \
  13. ftp://ftp.sunet.se/pub/www/utilities/curl/ \
  14. ftp://ftp.planetmirror.com/pub/curl/ \
  15. http://www.mirrormonster.com/curl/download/ \
  16. http://curl.mirrors.cyberservers.net/download/
  17. include ${TOPDIR}/mk/package.mk
  18. $(eval $(call PKG_template,CURL,curl,${PKG_VERSION}-${PKG_RELEASE}))
  19. $(eval $(call PKG_template,LIBCURL,libcurl,${PKG_VERSION}-${PKG_RELEASE}))
  20. CONFIGURE_STYLE= gnu
  21. CONFIGURE_ARGS+= --disable-thread \
  22. --enable-cookies \
  23. --enable-crypto-auth \
  24. --enable-nonblocking \
  25. --enable-file \
  26. --enable-ftp \
  27. --enable-http \
  28. --disable-ares \
  29. --disable-dict \
  30. --disable-gopher \
  31. --disable-ldap \
  32. --disable-manual \
  33. --disable-sspi \
  34. --disable-telnet \
  35. --disable-verbose \
  36. --with-random="/dev/urandom" \
  37. --with-ssl="${STAGING_DIR}/usr" \
  38. --without-ca-bundle \
  39. --without-gnutls \
  40. --without-libidn
  41. BUILD_STYLE= auto
  42. INSTALL_STYLE= auto
  43. post-install:
  44. ${INSTALL_DIR} ${IDIR_CURL}/usr/bin
  45. ${CP} ${WRKINST}/usr/bin/curl ${IDIR_CURL}/usr/bin/
  46. ${INSTALL_DIR} ${IDIR_LIBCURL}/usr/lib
  47. ${CP} ${WRKINST}/usr/lib/libcurl.so.* ${IDIR_LIBCURL}/usr/lib/
  48. include ${TOPDIR}/mk/pkg-bottom.mk