wok-next annotate pam_ssh/receipt @ rev 20821

perl-task-weaken: update $WGET_URL
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Jun 14 00:03:13 2018 +0300 (2018-06-14)
parents e6615350078d
children 4e6503d7a19f
rev   line source
al@20720 1 # SliTaz package receipt v2.
pascal@4562 2
pascal@4562 3 PACKAGE="pam_ssh"
pascal@18053 4 VERSION="2.1"
pascal@4562 5 CATEGORY="system-tools"
al@20720 6 SHORT_DESC="PAM Module that provides single sign-on behavior with ssh-agent"
pascal@4562 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15375 8 LICENSE="BSD"
al@20720 9 WEB_SITE="http://pam-ssh.sourceforge.net/"
al@20720 10
pascal@18053 11 TARBALL="$PACKAGE-$VERSION.tar.xz"
pascal@4562 12 WGET_URL="$SF_MIRROR/pam-ssh/$TARBALL"
pascal@15375 13
al@20720 14 BUILD_DEPENDS="openssh-pam openssl10-dev pam-dev"
pascal@4562 15
al@20720 16 compile_rules() {
al@20720 17 export CPPFLAGS="$CPPFLAGS -I /usr/include/openssl-1.0"
al@20720 18
al@20720 19 ./configure \
al@20720 20 --with-pam-dir=/lib/security \
al@20720 21 --with-ssl-dir=/usr/lib/openssl-1.0 \
al@20720 22 $CONFIGURE_ARGS &&
al@20720 23 fix libtool &&
pascal@4562 24 make &&
al@20720 25 make install
pascal@4562 26 }
pascal@4562 27
al@20720 28 genpkg_rules() {
al@20720 29 copy @std
al@20720 30 DEPENDS="openssl10 pam openssh-pam"
al@20720 31 TAGS="ssh"
pascal@4562 32 }