wok-next view pam_ssh/receipt @ rev 20720

pam_ssh: use openssl-1.0; pam_mount: up (2.16)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun May 27 17:20:18 2018 +0300 (2018-05-27)
parents e6615350078d
children 4e6503d7a19f
line source
1 # SliTaz package receipt v2.
3 PACKAGE="pam_ssh"
4 VERSION="2.1"
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 LICENSE="BSD"
9 WEB_SITE="http://pam-ssh.sourceforge.net/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="$SF_MIRROR/pam-ssh/$TARBALL"
14 BUILD_DEPENDS="openssh-pam openssl10-dev pam-dev"
16 compile_rules() {
17 export CPPFLAGS="$CPPFLAGS -I /usr/include/openssl-1.0"
19 ./configure \
20 --with-pam-dir=/lib/security \
21 --with-ssl-dir=/usr/lib/openssl-1.0 \
22 $CONFIGURE_ARGS &&
23 fix libtool &&
24 make &&
25 make install
26 }
28 genpkg_rules() {
29 copy @std
30 DEPENDS="openssl10 pam openssh-pam"
31 TAGS="ssh"
32 }