wok view screen/receipt @ rev 1407

feh : fix depends
fix build-depends
fix receipt to copy yudit.ttf font and images
author Mallory MOLLO <mallory@sweetpeople.org
date Tue Sep 23 21:14:56 2008 +0200 (2008-09-23)
parents
children 0dfb392a7619
line source
1 # SliTaz package receipt.
3 PACKAGE="screen"
4 VERSION="4.0.2"
5 CATEGORY="system-tools"
6 SHORT_DESC="Terminal multiplexer."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.gnu.org/software/screen"
10 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure --prefix=/usr --infodir=/usr/share/info \
17 --mandir=/usr/share/man $CONFIGURE_ARGS
18 make
19 make DESTDIR=$PWD/_pkg install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/bin $fs/usr/share
26 cp -a $_pkg/usr/bin/screen-$VERSION $fs/usr/bin/screen
27 cp -a $_pkg/usr/share/screen $fs/usr/share
29 }