wok view defragfs/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (23 months ago)
parents 370da83187ab
children 7dd01dedad38
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="http://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 }