wok view defragfs/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 00e3b45c063b
children 6b33f9da53d4
line source
1 # SliTaz package receipt.
3 PACKAGE="defragfs"
4 VERSION="1.1.1"
5 CATEGORY="misc"
6 SHORT_DESC="Measurement and Report and Defrag fs/file fragmentation."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.gz"
10 WEB_SITE="https://defragfs.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="perl"
15 # What is the latest version available today?
16 current_version()
17 {
18 wget -O - https://sourceforge.net/projects/defragfs/files/defragfs/ 2>/dev/null | \
19 sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \
20 sed '/scope="row/!d;s|.*/defragfs-.*/defragfs-||;s|.gz.*||;q'
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/bin
27 zcat $src/$TARBALL > $fs/usr/bin/defragfs
28 chmod 755 $fs/usr/bin/defragfs
29 }