buildout.cfg 1.01 KB
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
  ../pcre/buildout.cfg
Kazuhiko Shiozaki's avatar
Kazuhiko Shiozaki committed
11
  ../xz-utils/buildout.cfg
Łukasz Nowak's avatar
Łukasz Nowak committed
12
  ../zlib/buildout.cfg
13 14 15 16
parts =
  git

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

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