wok annotate ncursesw/receipt @ rev 14929
Up: eina-dev (1.7.8)
author | Dominique Corbex <domcox@slitaz.org> |
---|---|
date | Thu Aug 08 19:15:33 2013 +0200 (2013-08-08) |
parents | e2b4ebabd30f |
children | c971db4d1bba |
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 |
pankso@4884 | 35 sed -i 's|\tsh $(srcdir)/MKhashsize.sh|\tash $(srcdir)/MKhashsize.sh|' \ |
pankso@4884 | 36 include/Makefile.in |
pankso@4884 | 37 ./configure \ |
pankso@4884 | 38 --libdir=/lib \ |
pankso@4884 | 39 --sysconfdir=/etc \ |
pankso@4884 | 40 --with-shared \ |
pankso@4884 | 41 --without-debug \ |
pankso@4884 | 42 --without-ada \ |
pankso@4884 | 43 --enable-widec \ |
pankso@12773 | 44 --with-build-cc="gcc -D_GNU_SOURCE" \ |
pankso@12773 | 45 $CONFIGURE_ARGS && |
pankso@10274 | 46 make && make install |
pankso@4884 | 47 } |
pankso@4884 | 48 |
pankso@4884 | 49 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@4884 | 50 genpkg_rules() |
pankso@4884 | 51 { |
pankso@4884 | 52 mkdir -p $fs/lib $fs/usr/bin |
pankso@12773 | 53 |
pankso@4884 | 54 # Libs. |
pankso@12773 | 55 cp -a $install/lib/libncursesw.so* $fs/lib |
pankso@12773 | 56 |
pankso@4884 | 57 # Base progs. |
pankso@12773 | 58 cp $install/usr/bin/clear $fs/usr/bin |
pankso@12773 | 59 cp $install/usr/bin/tset $fs/usr/bin |
pankso@12773 | 60 cp $install/usr/bin/reset $fs/usr/bin |
pankso@4884 | 61 } |
pascal@8878 | 62 |
pascal@8878 | 63 # Overlap busybox |
pascal@8878 | 64 pre_install() |
pascal@8878 | 65 { |
pankso@12773 | 66 rm -f $root/usr/bin/clear |
pankso@12773 | 67 rm -f $root/usr/bin/reset |
pascal@8878 | 68 } |
pascal@8878 | 69 |
pascal@8878 | 70 post_remove() |
pascal@8878 | 71 { |
pankso@12773 | 72 ln -s /bin/busybox $root/usr/bin/clear |
pankso@12773 | 73 ln -s /bin/busybox $root/usr/bin/reset |
pascal@8878 | 74 } |