wok annotate ncursesw/receipt @ rev 15548
Up: thunderbird (17.0.11esr)
author | Dominique Corbex <domcox@slitaz.org> |
---|---|
date | Sun Nov 24 17:37:15 2013 +0100 (2013-11-24) |
parents | 079fed3fed2d |
children | 23c3aed67cd9 |
rev | line source |
---|---|
pankso@4884 | 1 # SliTaz package receipt. |
pankso@4884 | 2 |
pankso@4884 | 3 PACKAGE="ncursesw" |
slaxemulator@9487 | 4 VERSION="5.9" |
pankso@4884 | 5 SOURCE="ncurses" |
pankso@4884 | 6 CATEGORY="base-system" |
pankso@4884 | 7 SHORT_DESC="Library of functions to manage display on terminals." |
pankso@4884 | 8 MAINTAINER="pankso@slitaz.org" |
pankso@4884 | 9 TARBALL="$SOURCE-$VERSION.tar.gz" |
pankso@4884 | 10 WEB_SITE="http://invisible-island.net/ncurses/" |
pankso@4884 | 11 WGET_URL="ftp://invisible-island.net/ncurses/$TARBALL" |
pankso@12773 | 12 HOST_ARCH="i486 arm" |
pankso@12773 | 13 |
pankso@12773 | 14 DEPENDS="ncurses-common" |
pankso@12774 | 15 BUILD_DEPENDS="gcc" |
pankso@4884 | 16 |
pankso@12915 | 17 case "$ARCH" in |
pankso@12915 | 18 arm) BUILD_DEPENDS="" ;; |
pankso@12915 | 19 esac |
pankso@12915 | 20 |
pankso@4884 | 21 # Rules to configure and make the package. |
pankso@4884 | 22 compile_rules() |
pankso@4884 | 23 { |
pankso@12774 | 24 # Ncurses need an installed /usr/bin/tic witch is in ncursesw-extra. And |
pankso@12774 | 25 # when cross compiling we can't use the freshly cooked binary. See cook log: |
pankso@12774 | 26 # |
pankso@12774 | 27 #** Building terminfo database, please wait... |
pankso@12774 | 28 #Running /usr/bin/tic to install /home/slitaz/wok/ncurses/install/usr/share/terminfo |
pankso@12774 | 29 # |
pankso@12775 | 30 if [ ! -d "/var/lib/tazpkg/installed/ncursesw-extra" ]; then |
pankso@12792 | 31 echo "Installing: ncursesw-extra" |
pankso@12792 | 32 tazpkg get-install ncursesw-extra 2>/dev/null 1>/dev/null |
pankso@12774 | 33 fi |
pankso@4884 | 34 cd $src |
pascal@15083 | 35 mkdir -p $DESTDIR/usr/lib/terminfo |
pankso@4884 | 36 sed -i 's|\tsh $(srcdir)/MKhashsize.sh|\tash $(srcdir)/MKhashsize.sh|' \ |
pankso@4884 | 37 include/Makefile.in |
pankso@4884 | 38 ./configure \ |
pankso@4884 | 39 --libdir=/lib \ |
pankso@4884 | 40 --sysconfdir=/etc \ |
pankso@4884 | 41 --with-shared \ |
pankso@4884 | 42 --without-debug \ |
pankso@4884 | 43 --without-ada \ |
pankso@4884 | 44 --enable-widec \ |
pankso@12773 | 45 --with-build-cc="gcc -D_GNU_SOURCE" \ |
pankso@12773 | 46 $CONFIGURE_ARGS && |
pankso@10274 | 47 make && make install |
pankso@4884 | 48 } |
pankso@4884 | 49 |
pankso@4884 | 50 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@4884 | 51 genpkg_rules() |
pankso@4884 | 52 { |
pankso@4884 | 53 mkdir -p $fs/lib $fs/usr/bin |
pankso@12773 | 54 |
pankso@4884 | 55 # Libs. |
pankso@12773 | 56 cp -a $install/lib/libncursesw.so* $fs/lib |
pankso@12773 | 57 |
pankso@4884 | 58 # Base progs. |
pankso@12773 | 59 cp $install/usr/bin/clear $fs/usr/bin |
pankso@12773 | 60 cp $install/usr/bin/tset $fs/usr/bin |
pankso@12773 | 61 cp $install/usr/bin/reset $fs/usr/bin |
pankso@4884 | 62 } |
pascal@8878 | 63 |
pascal@8878 | 64 # Overlap busybox |
pascal@8878 | 65 pre_install() |
pascal@8878 | 66 { |
pankso@12773 | 67 rm -f $root/usr/bin/clear |
pankso@12773 | 68 rm -f $root/usr/bin/reset |
pascal@8878 | 69 } |
pascal@8878 | 70 |
pascal@8878 | 71 post_remove() |
pascal@8878 | 72 { |
pankso@12773 | 73 ln -s /bin/busybox $root/usr/bin/clear |
pankso@12773 | 74 ln -s /bin/busybox $root/usr/bin/reset |
pascal@8878 | 75 } |