wok-current diff screen-pam/receipt @ rev 21935
soundtouch: fix build
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Oct 06 18:10:58 2019 +0200 (2019-10-06) |
parents | 91cb22c9c6aa |
children | d443265acbc1 |
line diff
1.1 --- a/screen-pam/receipt Tue Jan 13 15:45:14 2015 +0100 1.2 +++ b/screen-pam/receipt Sun Oct 06 18:10:58 2019 +0200 1.3 @@ -1,27 +1,31 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="screen-pam" 1.7 -VERSION="4.2.1" 1.8 +VERSION="4.7.0" 1.9 CATEGORY="system-tools" 1.10 SHORT_DESC="Terminal multiplexer with PAM support." 1.11 MAINTAINER="pascal.bellard@slitaz.org" 1.12 LICENSE="GPL2" 1.13 +WEB_SITE="https://www.gnu.org/software/screen/" 1.14 + 1.15 SOURCE="screen" 1.16 TARBALL="$SOURCE-$VERSION.tar.gz" 1.17 -WEB_SITE="http://www.gnu.org/software/screen" 1.18 WGET_URL="$GNU_MIRROR/$SOURCE/$TARBALL" 1.19 + 1.20 CONFIG_FILES="/etc/screenrc" 1.21 + 1.22 SUGGESTED="screen-terminfo" 1.23 PROVIDE="screen:pam" 1.24 - 1.25 -DEPENDS="pam elfutils" 1.26 +DEPENDS="elfutils pam" 1.27 BUILD_DEPENDS="ncursesw-extra" 1.28 1.29 # Rules to configure and make the package. 1.30 compile_rules() 1.31 { 1.32 - ./configure --with-sys-screenrc=/etc/screenrc \ 1.33 - --enable-pam $CONFIGURE_ARGS && 1.34 + ./configure \ 1.35 + --with-sys-screenrc=/etc/screenrc \ 1.36 + --enable-pam \ 1.37 + $CONFIGURE_ARGS && 1.38 make && 1.39 make -j1 DESTDIR=$DESTDIR install && 1.40 mkdir -p $DESTDIR/usr/share/terminfo && 1.41 @@ -33,8 +37,10 @@ 1.42 # Rules to gen a SliTaz package suitable for Tazpkg. 1.43 genpkg_rules() 1.44 { 1.45 - mkdir -p $fs/usr/bin $fs/usr/share 1.46 - cp -a $install/etc $fs 1.47 - cp -a $install/usr/bin/screen-$VERSION $fs/usr/bin/screen 1.48 - cp -a $install/usr/share/screen $fs/usr/share 1.49 + mkdir -p $fs/usr/bin 1.50 + mkdir -p $fs/usr/share 1.51 + 1.52 + cp -a $install/etc $fs 1.53 + cp -a $install/usr/bin/screen-$VERSION $fs/usr/bin/screen 1.54 + cp -a $install/usr/share/screen $fs/usr/share 1.55 }