wok annotate screen-pam/receipt @ rev 12574

putty: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Apr 28 20:28:38 2012 +0200 (2012-04-28)
parents f73516f45a90
children 164fcaca1cd0
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"
slaxemulator@10341 13 SUGGESTED="screen-terminfo"
slaxemulator@10341 14 PROVIDE="screen:pam"
slaxemulator@10341 15
gokhlayeh@8980 16 DEPENDS="pam elfutils"
gokhlayeh@8980 17 BUILD_DEPENDS="ncursesw-extra"
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@8980 23 ./configure --with-sys-screenrc=/etc/screenrc \
slaxemulator@10341 24 --enable-pam $CONFIGURE_ARGS &&
pascal@2221 25 make &&
gokhlayeh@8898 26 make -j1 DESTDIR=$DESTDIR install &&
gokhlayeh@8898 27 mkdir -p $DESTDIR/usr/share/terminfo &&
gokhlayeh@8898 28 tic -o $DESTDIR/usr/share/terminfo terminfo/screeninfo.src &&
gokhlayeh@8898 29 mkdir -p $DESTDIR/etc &&
slaxemulator@9010 30 cp -a $src/etc/screenrc $DESTDIR/etc
pascal@2221 31 }
pascal@2221 32
pascal@2221 33 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@2221 34 genpkg_rules()
pascal@2221 35 {
gokhlayeh@8898 36 mkdir -p $fs/usr/bin $fs/usr/share
slaxemulator@9010 37 cp -a $_pkg/etc $fs
pascal@2221 38 cp -a $_pkg/usr/bin/screen-$VERSION $fs/usr/bin/screen
pascal@2221 39 cp -a $_pkg/usr/share/screen $fs/usr/share
pascal@2221 40 }
pascal@2221 41