wok view python-llfuse/receipt @ rev 22349

python-llfuse: s|attr/xattr|sys/xattr|
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Nov 18 10:45:32 2019 +0100 (2019-11-18)
parents 8dd8bab3f0ca
children 17363eb80472
line source
1 # SliTaz package receipt.
3 PACKAGE="python-llfuse"
4 SOURCE="llfuse"
5 VERSION="0.38"
6 CATEGORY="development"
7 SHORT_DESC="Python bindings for the low level FUSE API."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="LGPL2"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="https://pypi.org/project/$SOURCE/"
12 WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL"
14 DEPENDS="fuse"
15 BUILD_DEPENDS="python-dev fuse-dev attr-dev python-distribute openssl"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 sed -i 's|attr/xattr|sys/xattr|' src/llfuse.c Include/libc/xattr.pxd
21 sed -i -e 's|import sys|&\nimport ssl|' -e 's|http:|https:|' -e \
22 's|.*urlopen(url|\t ssl._create_default_https_context = ssl._create_unverified_context\n&|' \
23 util/distribute_setup.py
24 python setup.py build &&
25 python setup.py install --root=$DESTDIR
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 cp -a $install/usr $fs
32 }