diff options
Diffstat (limited to 'community/python-fuse/PKGBUILD')
-rw-r--r-- | community/python-fuse/PKGBUILD | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/community/python-fuse/PKGBUILD b/community/python-fuse/PKGBUILD new file mode 100644 index 000000000..1ebf70af6 --- /dev/null +++ b/community/python-fuse/PKGBUILD @@ -0,0 +1,21 @@ +# $Id: PKGBUILD 26095 2010-09-13 13:46:32Z cbrannon $ +# Maintainer: Chris Brannon <cmbrannon79@gmail.com> +# Contributor: Jaroslaw Swierczynski <swiergot@aur.archlinux.org> +# Contributor: Alexander Fehr <pizzapunk@gmail.com> + +pkgname=python-fuse +pkgver=0.2.1 +pkgrel=2 +arch=('i686' 'x86_64') +pkgdesc="Python bindings for FUSE" +url="http://fuse.sourceforge.net/wiki/index.php/FusePython" +license=('LGPL') +depends=('fuse' 'python2') +makedepends=('pkgconfig') +source=(http://downloads.sourceforge.net/sourceforge/fuse/fuse-python-${pkgver}.tar.gz) + +build() { + cd "$srcdir/fuse-python-$pkgver" + python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 +} +md5sums=('9d9c5c2311ac04291ce822dfece108f8') |