wok view safecopy/receipt @ rev 24348

Add some current_version
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Feb 02 18:01:43 2022 +0000 (2022-02-02)
parents 380ffe05937a
children 7dd01dedad38
line source
1 # SliTaz package receipt.
3 PACKAGE="safecopy"
4 VERSION="1.7"
5 CATEGORY="system-tools"
6 SHORT_DESC="A disk data recovery tool to extract data from damaged media"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://safecopy.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS=""
14 BUILD_DEPENDS=""
16 # What is the latest version available today?
17 current_version()
18 {
19 wget -O - https://sourceforge.net/projects/safecopy/files/safecopy/ 2>/dev/null | \
20 sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \
21 sed '/scope="row/!d;s|.*/safecopy-||;s|/.*||;q'
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 cd $src
28 ./configure && make && make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr
35 cp -a $install/usr/bin $fs/usr
36 }