mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
22 lines
601 B
Bash
22 lines
601 B
Bash
# Contributor: Jaroslaw Swierczynski <swiergot@aur.archlinux.org>
|
|
# Contributor: Alexander Fehr <pizzapunk@gmail.com>
|
|
|
|
pkgname=python-fuse
|
|
pkgver=20090921
|
|
pkgrel=1
|
|
arch=('i686' 'x86_64')
|
|
pkgdesc="Python bindings for FUSE"
|
|
url="http://fuse.sourceforge.net/wiki/index.php/FusePython"
|
|
license=('LGPL')
|
|
depends=('fuse' 'python')
|
|
makedepends=('pkgconfig' 'cvs')
|
|
|
|
_cvsroot=":pserver:anonymous:@fuse.cvs.sourceforge.net:/cvsroot/fuse"
|
|
_cvsmod="python"
|
|
|
|
build() {
|
|
cd $startdir/src
|
|
cvs -z3 -d $_cvsroot co -D $pkgver -f $_cvsmod
|
|
cd $_cvsmod
|
|
python setup.py install --prefix=/usr --root=$startdir/pkg
|
|
}
|