summaryrefslogtreecommitdiff
path: root/community/encfs/PKGBUILD
blob: e3172326eaca76503c71e679f7960d17e906580e (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
# $Id: PKGBUILD 102245 2013-12-07 10:36:29Z bpiotrowski $
# Contributor: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Jaroslaw Swierczynski <swiergot@aur.archlinux.org>
# Contributor: Sven Kauber, <celeon@gmail.com>
# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us>

pkgname=encfs
pkgver=1.7.4
pkgrel=12
pkgdesc='Encrypted filesystem in user-space'
arch=('i686' 'x86_64')
url='http://www.arg0.net/encfs'
license=('GPL')
depends=('rlog' 'openssl' 'fuse' 'boost-libs')
makedepends=('boost')
source=("http://encfs.googlecode.com/files/${pkgname}-${pkgver}.tgz")
md5sums=('ac90cc10b2e9fc7e72765de88321d617')

build(){
  cd ${pkgname}-${pkgver}

  ./configure \
    --prefix=/usr

  make
}

package() {
  cd ${pkgname}-${pkgver}

  make DESTDIR="${pkgdir}" install
}