wok view pam_ssh/receipt @ rev 8615

Fix: replace exit 1 by return 1 in receipts (exit broke cook-list function)
author Antoine Bodin <gokhlayeh@slitaz.org>
date Mon Feb 14 19:09:46 2011 +0100 (2011-02-14)
parents d425e13b28cc
children 35775080bc78
line source
1 # SliTaz package receipt.
3 PACKAGE="pam_ssh"
4 VERSION="1.97"
5 CATEGORY="system-tools"
6 SHORT_DESC="PAM Module that provides single sign-on behavior with ssh-agent."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://pam-ssh.sourceforge.net/"
10 WGET_URL="$SF_MIRROR/pam-ssh/$TARBALL"
11 DEPENDS="pam libcrypto openssh-pam"
12 BUILD_DEPENDS="pam-dev file"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr \
19 --mandir=/usr/share/man $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 cp -a $_pkg/lib $fs
28 }