wok view python-llfuse/receipt @ rev 20936

updated fpm2 again (0.76.1 -> 0.79)
author Hans-G?nter Theisgen
date Sat Mar 02 16:28:51 2019 +0100 (2019-03-02)
parents 02335b48dae1
children c37e3426c78d
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 -e 's|import sys|&\nimport ssl|' -e 's|http:|https:|' -e \
21 's|.*urlopen(url|\t ssl._create_default_https_context = ssl._create_unverified_context\n&|' \
22 util/distribute_setup.py
23 python setup.py build &&
24 python setup.py install --root=$DESTDIR
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 cp -a $install/usr $fs
31 }