wok view csstidy/receipt @ rev 25460

Update sourceforge.net web_sites with https://
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Sep 28 08:10:35 2022 +0000 (19 months ago)
parents 241fb98cab1c
children
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="https://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 - https://github.com/Cerdic/CSSTidy/tags 2>/dev/null | \
20 sed '/archive.*tar/!d;s|.*/v*\(.*\).tar.*|\1|;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 }