wok view csstidy/receipt @ rev 24383

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