wok annotate csstidy/receipt @ rev 25466

Update some web_site
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 01 09:32:27 2022 +0000 (20 months ago)
parents 241fb98cab1c
children
rev   line source
al@18686 1 # SliTaz package receipt.
al@18686 2
al@18686 3 PACKAGE="csstidy"
al@18686 4 VERSION="1.4"
al@18686 5 CATEGORY="development"
al@18686 6 SHORT_DESC="CSSTidy is a program that optimises, formats and fixes CSS code"
al@18686 7 MAINTAINER="al.bobylev@gmail.com"
al@18686 8 LICENSE="GPL2"
pascal@25460 9 WEB_SITE="https://csstidy.sourceforge.net/"
al@18686 10 TARBALL="$PACKAGE-source-$VERSION.zip"
al@18686 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
al@18686 12
al@18686 13 DEPENDS=""
al@18686 14 BUILD_DEPENDS="scons"
al@18686 15
pascal@24383 16 # What is the latest version available today?
pascal@24383 17 current_version()
pascal@24383 18 {
pascal@24453 19 wget -O - https://github.com/Cerdic/CSSTidy/tags 2>/dev/null | \
pascal@24453 20 sed '/archive.*tar/!d;s|.*/v*\(.*\).tar.*|\1|;q'
pascal@24383 21 }
pascal@24383 22
al@18686 23 # Rules to configure and make the package.
al@18686 24 compile_rules()
al@18686 25 {
al@18686 26 patch -p1 -i $stuff/csstidy-1.4-fix-misc.cpp.patch
al@18686 27 scons
al@18686 28 mkdir -p $install/usr/bin
al@18686 29 cp -a $src/release/csstidy/csstidy $install/usr/bin
al@18686 30 }
al@18686 31
al@18686 32 # Rules to gen a SliTaz package suitable for Tazpkg.
al@18686 33 genpkg_rules()
al@18686 34 {
al@18686 35 cp -a $install/* $fs
al@18686 36 }