wok-next view pam_ssh/receipt @ rev 21723

busybox: update patches
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:44:52 2020 +0000 (2020-09-01)
parents eea9609125ad
children
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/"
10 REPOLOGY="pam-ssh"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="$SF_MIRROR/pam-ssh/$TARBALL"
15 BUILD_DEPENDS="openssh-pam openssl10-dev pam-dev"
17 compile_rules() {
18 export CPPFLAGS="$CPPFLAGS -I /usr/include/openssl-1.0"
20 ./configure \
21 --with-pam-dir=/lib/security \
22 --with-ssl-dir=/usr/lib/openssl-1.0 \
23 $CONFIGURE_ARGS &&
24 fix libtool &&
25 make &&
26 make install
27 }
29 genpkg_rules() {
30 copy @std
31 DEPENDS="openssl10 pam openssh-pam"
32 TAGS="ssh"
33 }