wok annotate screen-pam/receipt @ rev 8898

Fix screen/screen-pam
author Antoine Bodin <gokhlayeh@slitaz.org>
date Sun Feb 27 23:33:47 2011 +0100 (2011-02-27)
parents 9689c3977b8c
children 129bb5b11a7e bdfc447d18ac
rev   line source
pascal@2221 1 # SliTaz package receipt.
pascal@2221 2
pascal@2221 3 PACKAGE="screen-pam"
pascal@2221 4 VERSION="4.0.3"
pascal@2221 5 CATEGORY="system-tools"
pascal@2221 6 SHORT_DESC="Terminal multiplexer with PAM support."
pascal@2221 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@2221 8 SOURCE="screen"
pascal@2221 9 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@2221 10 WEB_SITE="http://www.gnu.org/software/screen"
pascal@2221 11 WGET_URL="$GNU_MIRROR/$SOURCE/$TARBALL"
pascal@2221 12 CONFIG_FILES="/etc/screenrc"
pascal@2221 13 DEPENDS="pam"
gokhlayeh@8898 14 BUILD_DEPENDS="ncursesw-extra pam pam-dev"
pascal@2221 15 SUGGESTED="screen-terminfo"
pascal@2221 16 PROVIDE="screen:pam"
slaxemulator@8433 17 SRC_WANTED="$SOURCE"
pascal@2221 18
pascal@2221 19 # Rules to configure and make the package.
pascal@2221 20 compile_rules()
pascal@2221 21 {
pascal@2221 22 cd $src
gokhlayeh@8898 23 ./configure --enable-pam &&
pascal@2221 24 make &&
gokhlayeh@8898 25 make -j1 DESTDIR=$DESTDIR install &&
gokhlayeh@8898 26 mkdir -p $DESTDIR/usr/share/terminfo &&
gokhlayeh@8898 27 tic -o $DESTDIR/usr/share/terminfo terminfo/screeninfo.src &&
gokhlayeh@8898 28 mkdir -p $DESTDIR/etc &&
gokhlayeh@8898 29 cp $src/etc/screenrc $DESTDIR/etc
pascal@2221 30 }
pascal@2221 31
pascal@2221 32 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@2221 33 genpkg_rules()
pascal@2221 34 {
gokhlayeh@8898 35 mkdir -p $fs/usr/bin $fs/usr/share
gokhlayeh@8898 36 cp $_pkg/etc $fs
pascal@2221 37 cp -a $_pkg/usr/bin/screen-$VERSION $fs/usr/bin/screen
pascal@2221 38 cp -a $_pkg/usr/share/screen $fs/usr/share
pascal@2221 39 }
pascal@2221 40