wok-current rev 17384
ncurses: do not depends on libtinfo
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Nov 27 10:02:36 2014 +0100 (2014-11-27) |
parents | b3feed552691 |
children | cdf802803d26 |
files | incron/receipt ncurses/receipt |
line diff
1.1 --- a/incron/receipt Thu Nov 27 01:43:38 2014 +0200 1.2 +++ b/incron/receipt Thu Nov 27 10:02:36 2014 +0100 1.3 @@ -9,6 +9,7 @@ 1.4 TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.5 WEB_SITE="http://inotify.aiken.cz/" 1.6 WGET_URL="${WEB_SITE}download/$PACKAGE/$TARBALL" 1.7 +CONFIG_FILES="/etc/incron.d" 1.8 1.9 DEPENDS="gcc-lib-base" 1.10
2.1 --- a/ncurses/receipt Thu Nov 27 01:43:38 2014 +0200 2.2 +++ b/ncurses/receipt Thu Nov 27 10:02:36 2014 +0100 2.3 @@ -31,15 +31,21 @@ 2.4 mkdir -p $DESTDIR/usr/lib/terminfo 2.5 sed -i 's|\tsh $(srcdir)/MKhashsize.sh|\tash $(srcdir)/MKhashsize.sh|' \ 2.6 include/Makefile.in 2.7 - ./configure \ 2.8 + CONFIG_NCURSES='\ 2.9 --libdir=/lib \ 2.10 --sysconfdir=/etc \ 2.11 --with-shared \ 2.12 + --without-debug \ 2.13 + --without-ada \ 2.14 + --with-build-cc="gcc -D_GNU_SOURCE"' 2.15 + ./configure \ 2.16 + $CONFIG_NCURSES \ 2.17 --with-termlib \ 2.18 --with-ticlib \ 2.19 - --without-debug \ 2.20 - --without-ada \ 2.21 - --with-build-cc="gcc -D_GNU_SOURCE" \ 2.22 + $CONFIGURE_ARGS && 2.23 + make && make install 2.24 + ./configure \ 2.25 + $CONFIG_NCURSES \ 2.26 $CONFIGURE_ARGS && 2.27 make && make install 2.28 }