# SliTaz package receipt. PACKAGE="python-llfuse" VERSION="1.3.8" CATEGORY="development" SHORT_DESC="Python bindings for the low level FUSE API." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="LGPL2" WEB_SITE="https://pypi.org/project/llfuse/" REPOLOGY="python:llfuse" SOURCE="llfuse" TARBALL="$SOURCE-$VERSION.tar.gz" WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" DEPENDS="fuse2" BUILD_DEPENDS="attr-dev fuse2-dev openssl python-dev python-distribute python-setuptools" # What is the latest version available today? current_version() { wget -O - $WEB_SITE 2>/dev/null | sed "/$SOURCE [0-9]/!d;s|.*$SOURCE ||;s|<.*||" } # Rules to configure and make the package. compile_rules() { # 0.38 # sed -i 's|attr/xattr|sys/xattr|;s|(ENOATTR)|(ENODATA)|' \ # src/llfuse.c Include/libc/xattr.pxd # sed -i -e 's|import sys|&\nimport ssl|' -e 's|http:|https:|' -e \ # 's|.*urlopen(url|\t ssl._create_default_https_context = ssl._create_unverified_context\n&|' \ # util/distribute_setup.py python setup.py build && python setup.py install --root=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { cp -a $install/usr $fs }