wok-next view rsh/receipt @ rev 21153

Small updates.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Jan 31 16:45:41 2019 +0200 (2019-01-31)
parents 8940878905f3
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="rsh"
4 VERSION="85"
5 CATEGORY="network"
6 SHORT_DESC="Reimplementation of rsh and rlogin"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL"
9 WEB_SITE="https://packages.debian.org/source/sid/rsh-redone"
11 TARBALL="rsh-redone_$VERSION.orig.tar.gz"
12 WGET_URL="http://ftp.de.debian.org/debian/pool/main/r/rsh-redone/$TARBALL"
14 BUILD_DEPENDS="pam-dev"
15 SPLIT="rshd"
17 compile_rules() {
18 make &&
19 make DESTDIR=$install install
20 }
22 genpkg_rules() {
23 case $PACKAGE in
24 rsh)
25 mkdir -p $fs/usr
26 cp -a $install/usr/bin $fs/usr
27 ;;
28 rshd)
29 mkdir -p $fs/usr
30 cp -a $install/usr/sbin $fs/usr
31 cp -a $install/usr/etc $fs
32 CAT="network|rshd and rlogind"
33 DEPENDS="pam"
34 ;;
35 esac
36 }