wok-next annotate screen/receipt @ rev 1838
curl: --disable-ldap
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Thu Dec 11 14:45:41 2008 +0100 (2008-12-11) |
parents | |
children | 0dfb392a7619 |
rev | line source |
---|---|
pascal@901 | 1 # SliTaz package receipt. |
pascal@901 | 2 |
pascal@901 | 3 PACKAGE="screen" |
pascal@901 | 4 VERSION="4.0.2" |
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@901 | 11 |
pascal@901 | 12 # Rules to configure and make the package. |
pascal@901 | 13 compile_rules() |
pascal@901 | 14 { |
pascal@901 | 15 cd $src |
pascal@901 | 16 ./configure --prefix=/usr --infodir=/usr/share/info \ |
pascal@901 | 17 --mandir=/usr/share/man $CONFIGURE_ARGS |
pascal@901 | 18 make |
pascal@901 | 19 make DESTDIR=$PWD/_pkg install |
pascal@901 | 20 } |
pascal@901 | 21 |
pascal@901 | 22 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@901 | 23 genpkg_rules() |
pascal@901 | 24 { |
pascal@901 | 25 mkdir -p $fs/usr/bin $fs/usr/share |
pascal@901 | 26 cp -a $_pkg/usr/bin/screen-$VERSION $fs/usr/bin/screen |
pascal@901 | 27 cp -a $_pkg/usr/share/screen $fs/usr/share |
pascal@901 | 28 |
pascal@901 | 29 } |
pascal@901 | 30 |