summaryrefslogtreecommitdiff
path: root/community/pam_mount/PKGBUILD
blob: dc77371c864c10d1e84aba5664d907c5206a567f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# $Id: PKGBUILD 77500 2012-10-11 11:40:42Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributors: Sirius Bakke <sirius\at/nonline.org>

pkgname=pam_mount
pkgver=2.13
pkgrel=4
pkgdesc="A PAM module that can mount volumes for a user session"
arch=('i686' 'x86_64' 'mips64el')
url="http://pam-mount.sourceforge.net/"
license=('GPL')
depends=('util-linux' 'libhx>=3.12.1' 'libxml2>=2.6' 'openssl>0.9.7' 'cryptsetup>=1.1.2')
optdepends=('hxtools: If you have something like <logout wait="1000" hup="0" term="1" kill="1" /> in your config')
backup=('etc/security/pam_mount.conf.xml')
options=(!emptydirs !libtool)
source=("http://downloads.sourceforge.net/project/pam-mount/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz"
	"$pkgname-git.patch")
md5sums=('9f75fc8e84ea9cde619cdd6a62c7de33'
         'f018cb901eb6a18447a3a1b0a50c14dd')

build() {
  cd -- "$srcdir/$pkgname-$pkgver"
  patch -p1 <$srcdir/$pkgname-git.patch
  aclocal
  automake --add-missing
  libtoolize
  autoreconf
  ./configure \
	--prefix=/usr \
	--with-ssbindir=/usr/sbin \
	--with-slibdir=/usr/lib \
	--sysconfdir=/etc \
	--localstatedir=/var
  make
}

package() {
  cd -- "$srcdir/$pkgname-$pkgver"
  make DESTDIR="$pkgdir" install
}