# SliTaz package receipt. PACKAGE="python-cssutils" VERSION="1.0.2" CATEGORY="development" SHORT_DESC="A Python package to parse and build CSS Cascading Style Sheets." MAINTAINER="monghitri@aruba.it" LICENSE="GPL3" WEB_SITE="https://cthedot.de/cssutils/" SOURCE="cssutils" TARBALL="$SOURCE-$VERSION.tar.gz" WGET_URL="https://files.pythonhosted.org/packages/source/c/cssutils/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python python-setuptools" # What is the latest version available today? current_version() { wget -O - https://github.com/jaraco/cssutils/releases 2>/dev/null | \ sed '/archive.*tar/!d;s|.*/v*\(.*\).tar.*|\1|;q' } # Rules to configure and make the package. compile_rules() { python setup.py install --root=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { cp -a $install/usr $fs }