updated on Wed Jan 18 08:00:29 UTC 2012
[aur-mirror.git] / cryptmount / PKGBUILD
blobf9eedda1243d4fc9d8c9910edd74fc88d2ad9ba7
1 # Maintainer: Mike Sampson <mike at sambodata dot com>
2 # Contributor: Andrea Benazzo <andy@qitty.net>
3 pkgname=cryptmount
4 pkgver=4.1
5 pkgrel=1
6 pkgdesc="utility which allows an ordinary user to mount an encrypted file system"
7 arch=(i686 x86_64)
8 url="http://cryptmount.sourceforge.net/"
9 license=('GPL')
10 depends=(libgcrypt device-mapper util-linux-ng)
11 install=
12 source=(http://downloads.sourceforge.net/project/cryptmount/cryptmount/cryptmount-$pkgver/cryptmount-$pkgver.tar.gz)
13 noextract=()
14 md5sums=('29d4e9ea3f2c4fbf14623d3457c7026c')
16 build() {
17   cd "$srcdir/$pkgname-$pkgver"
19   install -d "$pkgdir/usr/sbin";
20   ./configure --prefix=/usr --sysconfdir=/etc
21   make || return 1
22   make DESTDIR="$pkgdir" install
25 # vim:set ts=2 sw=2 et: