buildout.cfg 641 Bytes
Newer Older
1 2 3 4 5 6
[buildout]
parts =
  gdbm

[gdbm]
recipe = hexagonit.recipe.cmmi
7 8 9
version = 1.9.1
url = ftp://ftp.gnu.org/gnu/gdbm/gdbm-${:version}.tar.gz
md5sum = 59f6e4c4193cb875964ffbe8aa384b58
10 11 12 13 14 15
configure-options =
  --disable-static
# install as parts/gdbm/include/gdbm/*.h etc. because some softwares
# (eg. python's dbmmodule.c extension) assume the location like this.
includedir = ${buildout:parts-directory}/${:_buildout_section_name_}/include
make-targets =
16
  install includedir=${:includedir}/gdbm && rm -f ${:includedir}/*.h && ln -sf gdbm/gdbm.h ${:includedir}/gdbm.h
17 18 19
# it seems that parallel build sometimes fails for gdbm.
make-options =
  -j1