buildout.cfg 1020 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
  ../openssl/buildout.cfg
7
  ../perl/buildout.cfg
Łukasz Nowak's avatar
Łukasz Nowak committed
8 9
  ../pkgconfig/buildout.cfg
  ../zlib/buildout.cfg
10 11 12 13
parts =
  curl

[curl]
14
recipe = slapos.recipe.cmmi
15 16
url = http://curl.haxx.se/download/curl-7.38.0.tar.bz2
md5sum = af6b3c299bd891f43cb5f76c4091b7b4
17 18 19 20 21 22 23 24 25 26 27 28 29 30
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
31
  --without-gnutls
32
  --without-spnego
33 34 35
  --with-ssl=${openssl:location}
  --with-zlib=${zlib:location}
  --without-nss
36
  --without-libmetalink
37
  --without-libssh2
38
  --without-librtmp
39
  --without-libidn
40
  --without-nghttp2
41 42

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