buildout.cfg 985 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
  ../curl/buildout.cfg
7
  ../gettext/buildout.cfg
Łukasz Nowak's avatar
Łukasz Nowak committed
8 9
  ../libexpat/buildout.cfg
  ../openssl/buildout.cfg
Kazuhiko Shiozaki's avatar
Kazuhiko Shiozaki committed
10
  ../xz-utils/buildout.cfg
Łukasz Nowak's avatar
Łukasz Nowak committed
11
  ../zlib/buildout.cfg
12 13 14 15
parts =
  git

[git]
16
recipe = slapos.recipe.cmmi
Kazuhiko Shiozaki's avatar
Kazuhiko Shiozaki committed
17 18
url = https://www.kernel.org/pub/software/scm/git/git-1.9.2.tar.xz
md5sum = 437c32078b5b5b229f1c10f6474eae78
19 20 21 22 23 24 25 26
configure-options =
  --with-curl=${curl:location}
  --with-openssl=${openssl:location}
  --with-zlib=${zlib:location}
  --with-expat=${libexpat:location}
  --without-python
  --without-tcltk
environment =
27
  NO_PERL=y
Kazuhiko Shiozaki's avatar
Kazuhiko Shiozaki committed
28
  PATH=${curl:location}/bin:${gettext:location}/bin:${xz-utils:location}/bin:%(PATH)s
29
  CPPFLAGS=-I${zlib:location}/include
30
  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
31 32 33 34 35

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