wok annotate screen-pam/receipt @ rev 15953

arm: fix file cross compilation and add testsuite
author Christophe Lincoln <pankso@slitaz.org>
date Sun Feb 23 15:49:23 2014 +0100 (2014-02-23)
parents 573a3ad4609a
children 91cb22c9c6aa
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@15587 8 LICENSE="GPL2"
pascal@2221 9 SOURCE="screen"
pascal@2221 10 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@2221 11 WEB_SITE="http://www.gnu.org/software/screen"
pascal@2221 12 WGET_URL="$GNU_MIRROR/$SOURCE/$TARBALL"
pascal@2221 13 CONFIG_FILES="/etc/screenrc"
slaxemulator@10341 14 SUGGESTED="screen-terminfo"
slaxemulator@10341 15 PROVIDE="screen:pam"
slaxemulator@10341 16
gokhlayeh@8980 17 DEPENDS="pam elfutils"
gokhlayeh@8980 18 BUILD_DEPENDS="ncursesw-extra"
pascal@2221 19
pascal@2221 20 # Rules to configure and make the package.
pascal@2221 21 compile_rules()
pascal@2221 22 {
pascal@2221 23 cd $src
gokhlayeh@8980 24 ./configure --with-sys-screenrc=/etc/screenrc \
slaxemulator@10341 25 --enable-pam $CONFIGURE_ARGS &&
pascal@2221 26 make &&
gokhlayeh@8898 27 make -j1 DESTDIR=$DESTDIR install &&
gokhlayeh@8898 28 mkdir -p $DESTDIR/usr/share/terminfo &&
gokhlayeh@8898 29 tic -o $DESTDIR/usr/share/terminfo terminfo/screeninfo.src &&
gokhlayeh@8898 30 mkdir -p $DESTDIR/etc &&
slaxemulator@9010 31 cp -a $src/etc/screenrc $DESTDIR/etc
pascal@2221 32 }
pascal@2221 33
pascal@2221 34 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@2221 35 genpkg_rules()
pascal@2221 36 {
gokhlayeh@8898 37 mkdir -p $fs/usr/bin $fs/usr/share
pascal@15587 38 cp -a $install/etc $fs
pascal@15587 39 cp -a $install/usr/bin/screen-$VERSION $fs/usr/bin/screen
pascal@15587 40 cp -a $install/usr/share/screen $fs/usr/share
pascal@2221 41 }
pascal@2221 42