wok-next annotate ncurses/receipt @ rev 15253
valgrind: remove wrong error trigger
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Sep 23 19:22:50 2013 +0000 (2013-09-23) |
parents | 851050970033 |
children | 23c3aed67cd9 |
rev | line source |
---|---|
pankso@7 | 1 # SliTaz package receipt. |
pankso@7 | 2 |
pankso@7 | 3 PACKAGE="ncurses" |
slaxemulator@9487 | 4 VERSION="5.9" |
pankso@210 | 5 CATEGORY="base-system" |
pascal@2086 | 6 SHORT_DESC="Library of functions to manage display on terminals." |
pankso@7 | 7 MAINTAINER="pankso@slitaz.org" |
pankso@7 | 8 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@7 | 9 WEB_SITE="http://invisible-island.net/ncurses/" |
pankso@7 | 10 WGET_URL="ftp://invisible-island.net/ncurses/$TARBALL" |
pankso@12773 | 11 HOST_ARCH="i486 arm" |
pankso@12773 | 12 |
pankso@12773 | 13 DEPENDS="ncurses-common" |
pankso@12818 | 14 BUILD_DEPENDS="" |
gokhlayeh@8203 | 15 |
pankso@7 | 16 # Rules to configure and make the package. |
pankso@7 | 17 compile_rules() |
pankso@7 | 18 { |
pankso@12774 | 19 # Ncurses need an installed /usr/bin/tic witch is in ncursesw-extra. And |
pankso@12774 | 20 # when cross compiling we can't use the freshly cooked binary. See cook log: |
pankso@12774 | 21 # |
pankso@12774 | 22 #** Building terminfo database, please wait... |
pankso@12774 | 23 #Running /usr/bin/tic to install /home/slitaz/wok/ncurses/install/usr/share/terminfo |
pankso@12774 | 24 # |
pankso@12775 | 25 if [ ! -d "/var/lib/tazpkg/installed/ncursesw-extra" ]; then |
pankso@12792 | 26 echo "Installing: ncursesw-extra" |
pankso@12792 | 27 tazpkg get-install ncursesw-extra 2>/dev/null 1>/dev/null |
pankso@12774 | 28 fi |
gokhlayeh@8203 | 29 cd $src |
pascal@15083 | 30 mkdir -p $DESTDIR/usr/lib/terminfo |
gokhlayeh@8203 | 31 sed -i 's|\tsh $(srcdir)/MKhashsize.sh|\tash $(srcdir)/MKhashsize.sh|' \ |
gokhlayeh@8203 | 32 include/Makefile.in |
gokhlayeh@8203 | 33 ./configure \ |
pankso@4884 | 34 --libdir=/lib \ |
pankso@4884 | 35 --sysconfdir=/etc \ |
pankso@4884 | 36 --with-shared \ |
pankso@4884 | 37 --without-debug \ |
slaxemulator@10092 | 38 --without-ada \ |
pankso@12773 | 39 --with-build-cc="gcc -D_GNU_SOURCE" \ |
pankso@12773 | 40 $CONFIGURE_ARGS && |
gokhlayeh@8203 | 41 make && make install |
pankso@7 | 42 } |
pankso@7 | 43 |
pankso@7 | 44 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@7 | 45 genpkg_rules() |
pankso@7 | 46 { |
pankso@4884 | 47 mkdir -p $fs/lib |
pankso@12773 | 48 cp -a $install/lib/libncurses.so* $fs/lib |
pankso@7 | 49 } |