wok annotate screen/receipt @ rev 8503

Fix dep: screen depend on elfutils
author Antoine Bodin <gokhlayeh@slitaz.org>
date Sat Feb 12 02:15:32 2011 +0100 (2011-02-12)
parents 0f72221f338d
children f28dd552c0d4
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"
gokhlayeh@8503 12 DEPENDS="elfutils"
gokhlayeh@8342 13 BUILD_DEPENDS="ncursesw-extra"
pascal@2174 14 SUGGESTED="screen-terminfo"
pascal@901 15
pascal@901 16 # Rules to configure and make the package.
pascal@901 17 compile_rules()
pascal@901 18 {
pascal@901 19 cd $src
gokhlayeh@8342 20 ./configure && make && make -j1 DESTDIR=$DESTDIR install || return 1
pascal@2174 21 mkdir -p _pkg/usr/share/terminfo
pascal@2174 22 tic -o $PWD/_pkg/usr/share/terminfo terminfo/screeninfo.src
pascal@901 23 }
pascal@901 24
pascal@901 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@901 26 genpkg_rules()
pascal@901 27 {
pascal@2173 28 mkdir -p $fs/usr/bin $fs/usr/share $fs/etc
pascal@2173 29 cp $src/etc/screenrc $fs/etc
pascal@901 30 cp -a $_pkg/usr/bin/screen-$VERSION $fs/usr/bin/screen
pascal@901 31 cp -a $_pkg/usr/share/screen $fs/usr/share
pascal@901 32 }
pascal@901 33