void-packages/srcpkgs/python-llfuse/template
2016-02-02 13:05:33 +01:00

32 lines
1 KiB
Bash

# Template file for 'python-llfuse'
pkgname=python-llfuse
version=0.42.1
revision=1
wrksrc="llfuse-${version}"
build_style=python-module
python_versions="2.7 3.4"
pycompile_module="llfuse"
hostmakedepends="python-setuptools python3.4-setuptools pkg-config"
makedepends="python-devel python3.4-devel fuse-devel attr-devel"
depends="python"
short_desc="Python2 bindings for the low level FUSE API"
maintainer="Christian Neukirchen <chneukirchen@gmail.com>"
license="LGPL-2"
homepage="https://bitbucket.org/nikratio/python-llfuse/"
distfiles="https://bitbucket.org/nikratio/python-llfuse/downloads/llfuse-${version}.tar.bz2"
checksum=8ee9f190682d1c94e6522e77064fcdb4c7b07e71a6b9d1193ac1527972a98b59
post_extract() {
sed -i 's/__gnu_linux__/__linux__/g' src/llfuse.h
sed -i '/Werror=conversion/d' setup.py # breaks 32-bit builds
}
python3.4-llfuse_package() {
depends="python3.4"
pycompile_version="3.4"
pycompile_module="llfuse"
short_desc="${short_desc/Python2/Python3.4}"
pkg_install() {
vmove usr/lib/python3.4
}
}