# HG changeset patch # User Pascal Bellard # Date 1415175900 -3600 # Node ID 3b5c0ea204f2fe33c133dbf6b2d0e8d0aa651d2c # Parent 30a3a02447030f68855c212023113cffdd1d1848 Add sshpass diff -r 30a3a0244703 -r 3b5c0ea204f2 e2tools/receipt --- a/e2tools/receipt Tue Nov 04 21:14:04 2014 +0100 +++ b/e2tools/receipt Wed Nov 05 09:25:00 2014 +0100 @@ -3,7 +3,7 @@ PACKAGE="e2tools" VERSION="0.0.16" CATEGORY="base-system" -SHORT_DESC="Read, write, and manipulate files in an ext2/ext3 filesystem.." +SHORT_DESC="Read, write, and manipulate files in an ext2/ext3 filesystem." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" TARBALL="$PACKAGE-$VERSION.tar.gz" diff -r 30a3a0244703 -r 3b5c0ea204f2 sshpass/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sshpass/receipt Wed Nov 05 09:25:00 2014 +0100 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="sshpass" +VERSION="1.05" +CATEGORY="network" +SHORT_DESC="Non-interactive ssh password auth." +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL2" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://sshpass.sourceforge.net/" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" +SUGGESTED="openssh" + +# Rules to configure and make the package. +compile_rules() +{ + ./configure \ + --prefix=/usr \ + $CONFIGURE_ARGS + make && make DESTDIR=$DESTDIR install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $install/usr/bin $fs/usr +}