buildout.cfg 714 Bytes
Newer Older
1
[buildout]
Antoine Catton's avatar
Antoine Catton committed
2 3 4 5 6 7 8
extends =
  ../openssl/buildout.cfg
  ../ncurses/buildout.cfg
  ../zlib/buildout.cfg
  ../java/buildout.cfg

parts = erlang
9 10 11

[erlang]
recipe = hexagonit.recipe.cmmi
Antoine Catton's avatar
Antoine Catton committed
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
url = http://www.erlang.org/download/otp_src_R14B04.tar.gz
md5sum = 4b469729f103f52702bfb1fb24529dc0
configure-options =
    --with-ssl=${openssl:location}
    --with-java
    --enable-dynamic-ssl-lib
    --enable-shared-zlib
    --enable-native-libs
environment=
    PATH=${java-sdk-1.6.0:location}/bin:%(PATH)s
    CFLAGS=-I${ncurses:location}/include -I${zlib:location}/include/
    LDFLAGS=-L${ncurses:location}/lib/ -L${zlib:location}/lib/ -Wl,-rpath=${ncurses:location}/lib/ -Wl,-rpath=${zlib:location}/lib/

make-options =
    -j1