# HG changeset patch # User Pascal Bellard # Date 1414933773 -3600 # Node ID 965b0a2c558af79c0d8d4c4d7d188e80ea51513e # Parent 77cfd35fcd5ded33e3679a2d7bd95dc0649b5150 Add rsh, rshd diff -r 77cfd35fcd5d -r 965b0a2c558a rsh/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/rsh/receipt Sun Nov 02 14:09:33 2014 +0100 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="rsh" +SOURCE="rsh-redone" +VERSION="85" +CATEGORY="network" +SHORT_DESC="Reimplementation of rsh and rlogin" +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL" +TARBALL="${SOURCE}_$VERSION.orig.tar.gz" +WEB_SITE="https://packages.debian.org/source/sid/rsh-redone" +WGET_URL="http://ftp.de.debian.org/debian/pool/main/${SOURCE:0:1}/$SOURCE/$TARBALL" + +BUILD_DEPENDS="pam-dev" + +# Rules to configure and make the package. +compile_rules() +{ + 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 +} diff -r 77cfd35fcd5d -r 965b0a2c558a rshd/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/rshd/receipt Sun Nov 02 14:09:33 2014 +0100 @@ -0,0 +1,20 @@ +# SliTaz package receipt. + +PACKAGE="rshd" +VERSION="85" +CATEGORY="network" +SHORT_DESC="Reimplementation of rshd and rlogind" +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL" +WEB_SITE="https://packages.debian.org/source/sid/rsh-redone" +WANTED="rsh" + +DEPENDS="pam" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $install/usr/sbin $fs/usr + cp -a $install/usr/etc $fs +}