wok-next annotate python-llfuse/receipt @ rev 21724

busybox: update configs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 11:04:25 2020 +0000 (2020-09-01)
parents 9b3461bf373c
children
rev   line source
al@20444 1 # SliTaz package receipt v2.
pascal@14376 2
al@20972 3 ORIGIN="llfuse"
pascal@14376 4 PACKAGE="python-llfuse"
al@20972 5 VERSION="1.3.5"
al@20972 6 CATEGORY="python"
al@20443 7 SHORT_DESC="Python bindings for the low level FUSE API"
pascal@14376 8 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15379 9 LICENSE="LGPL2"
al@20972 10 WEB_SITE="https://pypi.org/project/$ORIGIN/"
al@20972 11 #HOST_ARCH
al@20885 12 REPOLOGY="python:llfuse"
pascal@14376 13
al@20972 14 BUILD_DEPENDS="python-dev python-contextlib2 python3-dev \
al@20972 15 fuse2-dev attr-dev"
al@20972 16 SPLIT="${PACKAGE/python/python3}:3"
al@20443 17
al@20443 18 compile_rules() {
al@20972 19 pip$SET install --no-compile --root=$install $ORIGIN==$VERSION
pascal@14376 20 }
pascal@14376 21
al@20443 22 genpkg_rules() {
al@20443 23 copy @std
al@20972 24 py=${PACKAGE%%-*} # python/python3
al@20972 25 case $PACKAGE in
al@20972 26 python-*) DEPENDS="$py $py-contextlib2 fuse2";;
al@20972 27 python3-*) DEPENDS="$py fuse2";;
al@20972 28 esac
pascal@14376 29 }