wok annotate dulwich/receipt @ rev 24673

Add libavif
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Mar 11 17:20:09 2022 +0000 (2022-03-11)
parents 104a2a2e5484
children
rev   line source
pascal@13228 1 # SliTaz package receipt.
pascal@13228 2
pascal@13228 3 PACKAGE="dulwich"
Hans-G?nter@24503 4 VERSION="0.19.16"
pascal@13228 5 CATEGORY="development"
pascal@13228 6 SHORT_DESC="Git files formats and protocols for python."
pascal@13228 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15001 8 LICENSE="GPL2"
pascal@20672 9 WEB_SITE="https://pypi.org/project/$PACKAGE/"
Hans-G?nter@24503 10 REPOLOGY="python:dulwich"
Hans-G?nter@22663 11
pascal@13228 12 TARBALL="$PACKAGE-$VERSION.tar.gz"
Hans-G?nter@24503 13 WGET_URL="https://files.pythonhosted.org/packages/source/${PACKAGE:0:1}/$PACKAGE/$TARBALL"
pascal@13228 14
pascal@13228 15 DEPENDS="python"
pascal@13228 16 BUILD_DEPENDS="python-dev"
pascal@13228 17
pascal@24391 18 # What is the latest version available today?
pascal@24391 19 current_version()
pascal@24391 20 {
pascal@24391 21 wget -O - https://pypi.org/project/$PACKAGE/ 2>/dev/null | \
pascal@24391 22 sed "/$PACKAGE-/!d;/tar.gz/!d;s|.*$PACKAGE-||;s|.tar.*||;q"
pascal@24391 23 }
pascal@24391 24
pascal@13228 25 # Rules to configure and make the package.
pascal@13228 26 compile_rules()
pascal@13228 27 {
pascal@13228 28 python setup.py install --root=$DESTDIR --prefix=/usr
pascal@13228 29 }
pascal@13228 30
pascal@13228 31 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@13228 32 genpkg_rules()
pascal@13228 33 {
Hans-G?nter@22663 34 cp -a $install/* $fs
pascal@13228 35 }