wok view python-cssutils/receipt @ rev 25074

Add python-ipaddress
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jun 13 19:39:39 2022 +0000 (23 months ago)
parents cb009344b226
children 0262035dc1e7
line source
1 # SliTaz package receipt.
3 PACKAGE="python-cssutils"
4 VERSION="1.0.2"
5 CATEGORY="development"
6 SHORT_DESC="A Python package to parse and build CSS Cascading Style Sheets."
7 MAINTAINER="monghitri@aruba.it"
8 LICENSE="GPL3"
9 WEB_SITE="https://cthedot.de/cssutils/"
11 SOURCE="cssutils"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WGET_URL="https://files.pythonhosted.org/packages/source/c/cssutils/$TARBALL"
15 DEPENDS="python"
16 BUILD_DEPENDS="python python-setuptools"
18 # What is the latest version available today?
19 current_version()
20 {
21 wget -O - https://github.com/jaraco/cssutils/releases 2>/dev/null | \
22 sed '/archive.*tar/!d;s|.*/v*\(.*\).tar.*|\1|;q'
23 }
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 python setup.py install --root=$DESTDIR
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 cp -a $install/usr $fs
35 }