wok-next annotate screen/receipt @ rev 8339

Fix: screen need -j1 to install
author Antoine Bodin <gokhlayeh@slitaz.org>
date Wed Feb 02 05:18:27 2011 +0100 (2011-02-02)
parents 53e1828da719
children 0f72221f338d
rev   line source
pascal@901 1 # SliTaz package receipt.
pascal@901 2
pascal@901 3 PACKAGE="screen"
pascal@2174 4 VERSION="4.0.3"
pascal@901 5 CATEGORY="system-tools"
pascal@901 6 SHORT_DESC="Terminal multiplexer."
pascal@901 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@901 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@901 9 WEB_SITE="http://www.gnu.org/software/screen"
pascal@901 10 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
pascal@2173 11 CONFIG_FILES="/etc/screenrc"
pascal@2174 12 BUILD_DEPENDS="ncurses-extra"
pascal@2174 13 SUGGESTED="screen-terminfo"
pascal@901 14
pascal@901 15 # Rules to configure and make the package.
pascal@901 16 compile_rules()
pascal@901 17 {
pascal@901 18 cd $src
gokhlayeh@8339 19 ./configure && make && make -j1 install || return 1
pascal@2174 20 mkdir -p _pkg/usr/share/terminfo
pascal@2174 21 tic -o $PWD/_pkg/usr/share/terminfo terminfo/screeninfo.src
pascal@901 22 }
pascal@901 23
pascal@901 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@901 25 genpkg_rules()
pascal@901 26 {
pascal@2173 27 mkdir -p $fs/usr/bin $fs/usr/share $fs/etc
pascal@2173 28 cp $src/etc/screenrc $fs/etc
pascal@901 29 cp -a $_pkg/usr/bin/screen-$VERSION $fs/usr/bin/screen
pascal@901 30 cp -a $_pkg/usr/share/screen $fs/usr/share
pascal@901 31 }
pascal@901 32