buildout.cfg 822 Bytes
Newer Older
1 2 3 4
[buildout]
parts =
  neon
extends =
Łukasz Nowak's avatar
Łukasz Nowak committed
5 6 7 8
  ../libxml2/buildout.cfg
  ../openssl/buildout.cfg
  ../pkgconfig/buildout.cfg
  ../zlib/buildout.cfg
9 10

[neon]
11
recipe = slapos.recipe.cmmi
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
url = http://www.webdav.org/neon/neon-0.29.5.tar.gz
md5sum = ff369e69ef0f0143beb5626164e87ae2
configure-options =
  --disable-static
  --enable-shared
  --with-ssl=openssl
  --without-expat
  --without-gssapi
  --with-libxml2
  --enable-threadsafe-ssl=posix
  --disable-nls

environment =
  PATH=${libxml2:location}/bin:${pkgconfig:location}/bin:%(PATH)s
  PKG_CONFIG_PATH=${openssl:location}/lib/pkgconfig:${libxml2:location}/lib/pkgconfig
  CPPFLAGS=-I${openssl:location}/include -I${zlib:location}/include
28
  LDFLAGS=-L${openssl:location}/lib -Wl,-rpath=${openssl:location}/lib -Wl,-rpath=${zlib:location}/lib -Wl,-rpath=${libxml2:location}/lib