buildout.cfg 901 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
parts =
  git

[git]
14
recipe = slapos.recipe.cmmi
15 16
url = http://git-core.googlecode.com/files/git-1.7.12.tar.gz
md5sum = ceb1a6b17a3e33bbc70eadf8fce5876c
17 18 19 20 21 22 23 24
configure-options =
  --with-curl=${curl:location}
  --with-openssl=${openssl:location}
  --with-zlib=${zlib:location}
  --with-expat=${libexpat:location}
  --without-python
  --without-tcltk
environment =
25 26
  NO_PERL=y
  PATH=${curl:location}/bin:${gettext:location}/bin:%(PATH)s
27
  CPPFLAGS=-I${zlib:location}/include
28
  LDFLAGS=-L${zlib:location}/lib -L${openssl:location}/lib -Wl,-rpath=${openssl:location}/lib -Wl,-rpath=${zlib:location}/lib
Antoine Catton's avatar
Antoine Catton committed
29 30 31 32 33

[gitweb]
<= git
make-targets = install-gitweb
make-options = bindir="${git:location}/bin/"