diff options
author | Eivind Uggedal <eivind@uggedal.com> | 2014-07-31 06:23:39 +0000 |
---|---|---|
committer | Eivind Uggedal <eivind@uggedal.com> | 2014-07-31 06:24:11 +0000 |
commit | 2a5e1c6f66ebfc1a7ebc8f27d8037a01a86e91b1 (patch) | |
tree | 6ce281edc98c73b3c8f3aa0e85e88146bab0161f /main/py-fuse | |
parent | 0de0b16d755ea41dec46e4d834ecfd769c010685 (diff) | |
download | aports-2a5e1c6f66ebfc1a7ebc8f27d8037a01a86e91b1.tar.bz2 aports-2a5e1c6f66ebfc1a7ebc8f27d8037a01a86e91b1.tar.xz |
main/py-fuse: moved from testing
Diffstat (limited to 'main/py-fuse')
-rw-r--r-- | main/py-fuse/APKBUILD | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/main/py-fuse/APKBUILD b/main/py-fuse/APKBUILD new file mode 100644 index 0000000000..d8eb266fbf --- /dev/null +++ b/main/py-fuse/APKBUILD @@ -0,0 +1,40 @@ +# Contributor: Fabian Affolter <fabian@affolter-engineering.ch> +# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> +pkgname=py-fuse +pkgver=0.2.1 +pkgrel=0 +pkgdesc="Python bindings for FUSE - filesystem in userspace" +url="http://sourceforge.net/apps/mediawiki/fuse/index.php?title=FusePython" +arch="all" +license="LGPL2+" +depends="python" +depends_dev="" +makedepends="python-dev py-setuptools fuse-dev" +install="" +subpackages="" +source="http://downloads.sourceforge.net/fuse/fuse-python-$pkgver.tar.gz" + +_builddir="$srcdir"/fuse-python-$pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + python setup.py build || return 1 +} + +package() { + cd "$_builddir" + python setup.py install --prefix=/usr --root="$pkgdir" || return 1 +} + +md5sums="9d9c5c2311ac04291ce822dfece108f8 fuse-python-0.2.1.tar.gz" +sha256sums="11ead462f8d0f8302ee07b33fe93dc42c653861a16c8802a31903a7355b8351b fuse-python-0.2.1.tar.gz" +sha512sums="f89c738352ca23e92b5c0222dde0a13bbee4d86432e9c339080203ed5bf4f885c42a0a3a252ed485f26b569d87e68dc0d78c55d8f7b2f3ce0cbac8afb251bdaa fuse-python-0.2.1.tar.gz" |