wok view python-llfuse/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents ba584564da08
children 1df6fa555414
line source
1 # SliTaz package receipt.
3 PACKAGE="python-llfuse"
4 VERSION="1.3.6"
5 CATEGORY="development"
6 SHORT_DESC="Python bindings for the low level FUSE API."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="LGPL2"
9 WEB_SITE="https://pypi.org/project/llfuse/"
11 SOURCE="llfuse"
12 TARBALL="$SOURCE-$VERSION.tar.bz2"
13 WGET_URL="https://files.pythonhosted.org/packages/source/l/$SOURCE/$TARBALL"
15 DEPENDS="fuse python"
16 BUILD_DEPENDS="attr-dev fuse-dev openssl python python-dev python-distribute
17 python-setuptools"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 # 0.38
23 # sed -i 's|attr/xattr|sys/xattr|;s|(ENOATTR)|(ENODATA)|' \
24 # src/llfuse.c Include/libc/xattr.pxd
25 # sed -i -e 's|import sys|&\nimport ssl|' -e 's|http:|https:|' -e \
26 # 's|.*urlopen(url|\t ssl._create_default_https_context = ssl._create_unverified_context\n&|' \
27 # util/distribute_setup.py
29 python setup.py build &&
30 python setup.py install --root=$DESTDIR
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 cp -a $install/usr $fs
37 }