buildout.cfg 1.07 KB
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.54.1.tar.bz2
md5sum = 6b6eb722f512e7a24855ff084f54fe55
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
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
  --with-zlib=${zlib:location}
32 33 34 35 36
  --with-ssl=${openssl:location}
  --without-gnutls
  --without-polarssl
  --without-mbedtls
  --without-cyassl
37
  --without-nss
38 39
  --without-axtls
  --without-libpsl
40
  --without-libmetalink
41
  --without-libssh2
42
  --without-librtmp
43
  --without-libidn
44
  --without-nghttp2
45 46

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