updated on Tue Jan 10 04:01:21 UTC 2012
[aur-mirror.git] / bindfs / PKGBUILD
blob6ec994a2abcacb3ef7bc1fdd3862af237a43168d
1 # Contributor: Xyne <xyne at archlinux dot us>
3 pkgname=bindfs
4 pkgver=1.9
5 pkgrel=1
6 pkgdesc="A FUSE filesystem for mirroring a directory to another directory, similar to 'mount --bind', with permission settings."
7 arch=('i686' 'x86_64')
8 url="http://code.google.com/p/bindfs/"
9 license=('GPL')
10 depends=('fuse')
11 source=(http://bindfs.googlecode.com/files/${pkgname}-${pkgver}.tar.gz)
12 md5sums=('610778ad89bc5b0ff0be7b44bb2b6f0c')
14 build() {
15   cd "$srcdir/$pkgname-$pkgver"
17   ./configure --prefix=/usr || return 1
18   make CPUOPTIMIZATIONS="${CFLAGS}" || return 1
19   make DESTDIR="$pkgdir" install || return 1