buildout.cfg 791 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
[buildout]
parts =
  ncurses

[ncurses]
recipe = hexagonit.recipe.cmmi
url = ftp://ftp.gnu.org/pub/gnu/ncurses/ncurses-5.9.tar.gz
md5sum = 8cb9c412e5f2d96bc6f459aa8c6282a1
configure-options =
  --prefix=${buildout:parts-directory}/${:_buildout_section_name_}
  --with-shared
  --without-normal
  --without-debug
14
  --without-gpm
15 16 17 18
  --enable-rpath
# tricky way to rerun with --enable-widec
make-targets =
  install && (for i in curses unctrl eti form menu panel term; do ln -sf ncurses/$i.h ${buildout:parts-directory}/${:_buildout_section_name_}/include/$i.h; done) && ./configure ${:configure-options} --enable-widec && make install
19
# pass dummy LDCONFIG to skip needless calling of ldconfig by non-root user
20 21
environment =
  LDFLAGS =-Wl,--as-needed
22
  LDCONFIG=/bin/echo
23 24
make-options =
  -j1