wok view pam_ssh/receipt @ rev 22042

gcc83-lib-base: do NOT provide gcc-lib-base
Currently BOTH gcc-lib-base and gcc83-lib-base are installed on my SliTaz system. So, with the current (and longstanding) tazpkg limitations I can't update just gcc-lib-base: tazpkg always updates gcc83-lib-base for me instead. Now I can't run Firefox, Vivaldi, Chrome, etc. I think because of gcc-lib-base, but I not sure 1bsolutely.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 22 12:55:54 2019 +0300 (2019-10-22)
parents f44ef80ff9e2
children 080c1dff8494
line source
1 # SliTaz package receipt.
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 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="http://pam-ssh.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/pam-ssh/$TARBALL"
12 TAGS="ssh"
14 DEPENDS="pam libcrypto openssh-pam"
15 BUILD_DEPENDS="pam-dev file openssl-dev openssh-pam automake"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure --prefix=/usr \
21 --mandir=/usr/share/man $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 cp -a $install/lib $fs
30 }