wok view pam_mount/receipt @ rev 20734

updated azpainter (2.0.4 -> 2.1.3)
author Hans-G?nter Theisgen
date Sat Feb 09 17:15:55 2019 +0100 (2019-02-09)
parents 10e6c72b2c15
children 080c1dff8494
line source
1 # SliTaz package receipt.
3 PACKAGE="pam_mount"
4 VERSION="2.15"
5 CATEGORY="system-tools"
6 SHORT_DESC="PAM Module that can mount volumes for a user session."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2 LGPL"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="http://pam-mount.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/pam-mount/$TARBALL"
13 BUILD_DEPENDS="pam-dev libhx libhx-dev libcrypto-dev openssl-dev libxml2-dev \
14 util-linux-mount-dev util-linux-blkid-dev util-linux-uuid-dev"
15 DEPENDS="pam libcrypto libxml2 libhx zlib"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure --prefix=/usr \
21 --sysconfdir=/etc --localstatedir=/var \
22 --mandir=/usr/share/man $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $install/usr/sbin $fs/usr
32 cp -a $install/sbin $fs
33 cp -a $install/etc $fs
34 cp -a $install/lib $fs
35 cp -a $install/var $fs
36 }