2008-03-07 03:04:28 +11:00
|
|
|
# Description: Python bindings for FUSE.
|
|
|
|
# URL: http://fuse.sourceforge.net/wiki/index.php/FusePython
|
|
|
|
# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au
|
|
|
|
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
2008-03-08 05:07:59 +11:00
|
|
|
# Depends on: setuptools fuse
|
2007-07-01 10:33:36 +10:00
|
|
|
|
|
|
|
name=fuse-python
|
|
|
|
version=0.2
|
|
|
|
release=1
|
2008-03-07 03:04:28 +11:00
|
|
|
source=(http://dl.sourceforge.net/sourceforge/fuse/fuse-python-$version.tar.gz)
|
2007-07-01 10:33:36 +10:00
|
|
|
|
|
|
|
build() {
|
2008-03-07 03:04:28 +11:00
|
|
|
cd fuse-python-$version
|
2007-07-01 10:33:36 +10:00
|
|
|
python setup.py install --root=$PKG
|
|
|
|
}
|
2008-03-07 03:04:28 +11:00
|
|
|
|