wok-current view python3-distro/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 source
1 # SliTaz package receipt.
3 PACKAGE="python3-distro"
4 VERSION="1.6.0"
5 CATEGORY="development"
6 TAGS="python"
7 SHORT_DESC="OS platform information API"
8 MAINTAINER="slitaz@slitaz.org"
9 LICENSE="MIT"
10 WEB_SITE="https://pypi.org/project/distro/"
11 REPOLOGY="python:distro"
13 SOURCE="Distro"
14 TARBALL="$SOURCE-$VERSION.tar.gz"
15 WGET_URL="https://github.com/python-distro/distro/archive/refs/tags/v$VERSION.tar.gz"
17 DEPENDS="python3"
18 BUILD_DEPENDS="python3 python3-dev python3-setuptools"
20 # What is the latest version available today?
21 current_version()
22 {
23 wget -O - https://pypi.org/project/Mako/ 2>/dev/null | \
24 sed '/Mako [0-9]/!d;s|.*Mako ||;q'
25 }
27 # Rules to configure and make the package.
28 compile_rules()
29 {
30 python3 setup.py install --root=$DESTDIR
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 cp -a $install/usr $fs
37 }