wok-stable view openssh-pam/receipt @ rev 2199

Remove duplicate get-*-firmware
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Feb 09 17:12:44 2009 +0000 (2009-02-09)
parents
children 05bf8fea0033
line source
1 # SliTaz package receipt.
3 PACKAGE="openssh-pam"
4 VERSION="5.0p1"
5 CATEGORY="security"
6 SHORT_DESC="Openbsd Secure Shell using PAM."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 SOURCE="openssh"
9 TARBALL="$SOURCE-$VERSION.tar.gz"
10 WEB_SITE="http://www.openssh.org/"
11 WGET_URL="ftp://ftp.fr.openbsd.org/pub/OpenBSD/OpenSSH/portable/$TARBALL"
12 DEPENDS="libcrypto zlib pam"
13 BUILD_DEPENDS="libcrypto-dev zlib-dev openssl-dev pam pam-dev"
14 PROVIDE="openssh:pam"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr --sysconfdir=/etc/ssh --with-pam \
21 --with-privsep-user=nobody --with-privsep-path=/var/run/sshd \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/share $fs/etc/init.d $fs/etc/ssh $fs/var/run/sshd
31 cp -a $_pkg/usr/share/Ssh.bin $fs/usr/share
32 cp -a $_pkg/usr/sbin $_pkg/usr/bin $_pkg/usr/libexec $fs/usr
33 cp -a $_pkg/etc $fs
34 cp stuff/openssh $fs/etc/init.d
35 }