wok view py3k-llfuse/receipt @ rev 25481

created recipe for py3k-cffi
author Hans-G?nter Theisgen
date Mon Oct 17 07:42:01 2022 +0100 (19 months ago)
parents
children 54d60b77baf4
line source
1 # SliTaz package receipt.
3 PACKAGE="py3k-llfuse"
4 VERSION="1.4.2"
5 CATEGORY="development"
6 SHORT_DESC="A set of Python bindings for the low level FUSE API."
7 MAINTAINER="maintainer@slitaz.org"
8 LICENSE="GPL2+"
9 WEB_SITE="https://github.com/python-llfuse/python-llfuse/"
11 SOURCE="llfuse"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$SOURCE-$VERSION.tar.gz"
15 DEPENDS="fuse2 py3k"
16 BUILD_DEPENDS="fuse2-dev py3k-dev py3k-setuptools_scm"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 # not compiling with fuse[3]!
22 python3 setup.py build &&
23 python3 setup.py install --prefix=/usr --root=$DESTDIR
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs
30 cp -a $install/usr $fs
31 }