mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
26 lines
811 B
Bash
26 lines
811 B
Bash
|
# $Id: PKGBUILD 2144 2009-09-09 14:55:46Z andrea $
|
||
|
# Maintainer: Andrea Scarpino <bash.lnx@gmail.com>
|
||
|
# Contributor: Jaroslaw Swierczynski <swiergot@aur.archlinux.org>
|
||
|
# Contributor: Sven Kauber, <celeon@gmail.com>
|
||
|
|
||
|
pkgname=encfs
|
||
|
pkgver=1.5
|
||
|
pkgrel=5
|
||
|
pkgdesc="Encrypted filesystem in user-space"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://www.arg0.net/encfs"
|
||
|
license=('GPL')
|
||
|
depends=('rlog' 'openssl>=0.9.8k' 'fuse>=2.8.0' 'boost>=1.39.0')
|
||
|
options=('!libtool')
|
||
|
source=(http://encfs.googlecode.com/files/$pkgname-$pkgver-2.tgz
|
||
|
encfs-1.5-const.patch)
|
||
|
md5sums=('b07008545545b4a57cf2bf65f08a14ad'
|
||
|
'7f83d584780f985f9a8904c6c2edd3e0')
|
||
|
build(){
|
||
|
cd "$srcdir/$pkgname-$pkgver"
|
||
|
patch -Np1 -i $srcdir/encfs-1.5-const.patch || return 1
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make DESTDIR="$pkgdir" install
|
||
|
}
|