buildout.cfg 976 Bytes
Newer Older
1 2 3 4 5
# libcurl - the multiprotocol file transfer library
# http://curl.haxx.se/

[buildout]
extends =
Łukasz Nowak's avatar
Łukasz Nowak committed
6 7 8
  ../openssl/buildout.cfg
  ../pkgconfig/buildout.cfg
  ../zlib/buildout.cfg
9 10 11 12
parts =
  curl

[curl]
13
recipe = slapos.recipe.cmmi
14 15
url = http://curl.haxx.se/download/curl-7.36.0.tar.bz2
md5sum = e6d1f9d1b59da5062109ffe14e0569a4
16 17 18 19 20 21 22 23 24 25 26 27 28 29
configure-options =
  --disable-static
  --disable-ldap
  --disable-ldaps
  --disable-rtsp
  --disable-dict
  --disable-telnet
  --disable-tftp
  --disable-pop3
  --disable-imap
  --disable-smtp
  --disable-gopher
  --enable-ipv6
  --disable-sspi
30
  --without-gnutls
31
  --without-spnego
32 33 34
  --with-ssl=${openssl:location}
  --with-zlib=${zlib:location}
  --without-nss
35
  --without-libmetalink
36
  --without-libssh2
37
  --without-librtmp
38
  --without-libidn
39
  --without-nghttp2
40 41 42 43

environment =
  PATH=${pkgconfig:location}/bin:%(PATH)s
  PKG_CONFIG_PATH=${openssl:location}/lib/pkgconfig
44
  LDFLAGS=-Wl,-rpath=${zlib:location}/lib -Wl,-rpath=${openssl:location}/lib