buildout.cfg 640 Bytes
Newer Older
1 2
[buildout]
extends =
Łukasz Nowak's avatar
Łukasz Nowak committed
3
  ../pcre/buildout.cfg
4
  ../coreutils/buildout.cfg
Kazuhiko Shiozaki's avatar
Kazuhiko Shiozaki committed
5
  ../xz-utils/buildout.cfg
6
parts =
7
  grep-output
8 9

[grep]
10
recipe = slapos.recipe.cmmi
11
shared = true
12 13
url = http://ftp.gnu.org/gnu/grep/grep-2.25.tar.xz
md5sum = 04e96b0e6f0fe6a180ae62c88fcd0af6
14
environment =
Kazuhiko Shiozaki's avatar
Kazuhiko Shiozaki committed
15
  PATH=${xz-utils:location}/bin:%(PATH)s
Kazuhiko Shiozaki's avatar
Kazuhiko Shiozaki committed
16 17
  CPPFLAGS=-I${pcre:location}/include
  LDFLAGS=-L${pcre:location}/lib -Wl,-rpath=${pcre:location}/lib
18 19 20 21 22 23 24 25

[grep-output]
# Shared binary location to ease migration
recipe = plone.recipe.command
stop-on-error = true
update-command = ${:command}
command = ${coreutils-output:test} -x ${:grep}
grep = ${grep:location}/bin/grep