wok-current diff python3-pillow/receipt @ rev 25701

Fix dep for libglamoregl.so (libepoxy), and miss file for amdgpu (thanks alanyih)
author Stanislas Leduc <shann@slitaz.org>
date Fri Apr 19 12:48:51 2024 +0000 (2 months ago)
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/python3-pillow/receipt	Fri Apr 19 12:48:51 2024 +0000
     1.3 @@ -0,0 +1,35 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="python3-pillow"
     1.7 +VERSION="8.4.0"
     1.8 +CATEGORY="development"
     1.9 +SHORT_DESC="Python3 Imaging Library (Fork)."
    1.10 +MAINTAINER="pascal.bellard@slitaz.org"
    1.11 +LICENSE="PSL"
    1.12 +WEB_SITE="https://pypi.python.org/pypi/Pillow"
    1.13 +
    1.14 +SOURCE="Pillow"
    1.15 +TARBALL="$SOURCE-$VERSION.tar.gz"
    1.16 +WGET_URL="https://github.com/python-pillow/$SOURCE/archive/refs/tags/$VERSION.tar.gz"
    1.17 +
    1.18 +DEPENDS="python3"
    1.19 +BUILD_DEPENDS="jpeg-dev python3-dev python3-setuptools tiff-dev"
    1.20 +
    1.21 +# What is the latest version available today?
    1.22 +current_version()
    1.23 +{
    1.24 +	wget -O - https://pypi.org/project/$SOURCE/ 2>/dev/null | \
    1.25 +	sed "/$SOURCE-/!d;/tar/!d;s|.*$SOURCE-||;s|.tar.*||;q"
    1.26 +}
    1.27 +
    1.28 +# Rules to configure and make the package.
    1.29 +compile_rules()
    1.30 +{
    1.31 +	python3 setup.py install --root=$DESTDIR
    1.32 +}
    1.33 +
    1.34 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.35 +genpkg_rules()
    1.36 +{
    1.37 +	cp -a $install/usr $fs
    1.38 +}