buildout.cfg 791 Bytes
Newer Older
1 2 3 4 5
# git - a distributed version control system with speed and efficiency
# http://git-scm.com/

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

[git]
recipe = hexagonit.recipe.cmmi
Cédric de Saint Martin's avatar
Cédric de Saint Martin committed
15 16
url = http://git-core.googlecode.com/files/git-1.7.10.4.tar.gz
md5sum = 68319d593d051ef76c26e945bbd2d7ac
17 18 19 20 21 22 23 24 25
configure-options =
  --with-curl=${curl:location}
  --with-openssl=${openssl:location}
  --with-zlib=${zlib:location}
  --with-expat=${libexpat:location}
  --without-python
  --without-tcltk

environment =
26
  NO_PERL=1
27 28
  PATH=${curl:location}/bin:%(PATH)s
  CPPFLAGS=-I${zlib:location}/include
29
  LDFLAGS=-L${zlib:location}/lib -L${openssl:location}/lib -Wl,-rpath=${openssl:location}/lib -Wl,-rpath=${zlib:location}/lib