wok-next rev 17312
Add rsh, rshd
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Nov 02 14:09:33 2014 +0100 (2014-11-02) |
parents | 77cfd35fcd5d |
children | 48aca7ed3557 |
files | rsh/receipt rshd/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/rsh/receipt Sun Nov 02 14:09:33 2014 +0100 1.3 @@ -0,0 +1,28 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="rsh" 1.7 +SOURCE="rsh-redone" 1.8 +VERSION="85" 1.9 +CATEGORY="network" 1.10 +SHORT_DESC="Reimplementation of rsh and rlogin" 1.11 +MAINTAINER="pascal.bellard@slitaz.org" 1.12 +LICENSE="GPL" 1.13 +TARBALL="${SOURCE}_$VERSION.orig.tar.gz" 1.14 +WEB_SITE="https://packages.debian.org/source/sid/rsh-redone" 1.15 +WGET_URL="http://ftp.de.debian.org/debian/pool/main/${SOURCE:0:1}/$SOURCE/$TARBALL" 1.16 + 1.17 +BUILD_DEPENDS="pam-dev" 1.18 + 1.19 +# Rules to configure and make the package. 1.20 +compile_rules() 1.21 +{ 1.22 + make && 1.23 + make DESTDIR=$DESTDIR install 1.24 +} 1.25 + 1.26 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.27 +genpkg_rules() 1.28 +{ 1.29 + mkdir -p $fs/usr 1.30 + cp -a $install/usr/bin $fs/usr 1.31 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/rshd/receipt Sun Nov 02 14:09:33 2014 +0100 2.3 @@ -0,0 +1,20 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="rshd" 2.7 +VERSION="85" 2.8 +CATEGORY="network" 2.9 +SHORT_DESC="Reimplementation of rshd and rlogind" 2.10 +MAINTAINER="pascal.bellard@slitaz.org" 2.11 +LICENSE="GPL" 2.12 +WEB_SITE="https://packages.debian.org/source/sid/rsh-redone" 2.13 +WANTED="rsh" 2.14 + 2.15 +DEPENDS="pam" 2.16 + 2.17 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.18 +genpkg_rules() 2.19 +{ 2.20 + mkdir -p $fs/usr 2.21 + cp -a $install/usr/sbin $fs/usr 2.22 + cp -a $install/usr/etc $fs 2.23 +}