wok rev 17326
Add sshpass
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Nov 05 09:25:00 2014 +0100 (2014-11-05) |
parents | 30a3a0244703 |
children | 61793c4a69cf |
files | e2tools/receipt sshpass/receipt |
line diff
1.1 --- a/e2tools/receipt Tue Nov 04 21:14:04 2014 +0100 1.2 +++ b/e2tools/receipt Wed Nov 05 09:25:00 2014 +0100 1.3 @@ -3,7 +3,7 @@ 1.4 PACKAGE="e2tools" 1.5 VERSION="0.0.16" 1.6 CATEGORY="base-system" 1.7 -SHORT_DESC="Read, write, and manipulate files in an ext2/ext3 filesystem.." 1.8 +SHORT_DESC="Read, write, and manipulate files in an ext2/ext3 filesystem." 1.9 MAINTAINER="pascal.bellard@slitaz.org" 1.10 LICENSE="GPL2" 1.11 TARBALL="$PACKAGE-$VERSION.tar.gz"
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/sshpass/receipt Wed Nov 05 09:25:00 2014 +0100 2.3 @@ -0,0 +1,28 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="sshpass" 2.7 +VERSION="1.05" 2.8 +CATEGORY="network" 2.9 +SHORT_DESC="Non-interactive ssh password auth." 2.10 +MAINTAINER="pascal.bellard@slitaz.org" 2.11 +LICENSE="GPL2" 2.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 2.13 +WEB_SITE="http://sshpass.sourceforge.net/" 2.14 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 2.15 +SUGGESTED="openssh" 2.16 + 2.17 +# Rules to configure and make the package. 2.18 +compile_rules() 2.19 +{ 2.20 + ./configure \ 2.21 + --prefix=/usr \ 2.22 + $CONFIGURE_ARGS 2.23 + make && make DESTDIR=$DESTDIR install 2.24 +} 2.25 + 2.26 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.27 +genpkg_rules() 2.28 +{ 2.29 + mkdir -p $fs/usr 2.30 + cp -a $install/usr/bin $fs/usr 2.31 +}