wok view backup-manager/receipt @ rev 25695

sc-im: replaced released version by development version
author Hans-G?nter Theisgen
date Fri Apr 26 08:13:41 2024 +0100 (5 weeks ago)
parents 5db546345599
children
line source
1 # SliTaz package receipt.
3 PACKAGE="backup-manager"
4 VERSION=0.7.15
5 CATEGORY="network"
6 TAGS="backup"
7 SHORT_DESC="A really simple to use backup tool."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="https://github.com/sukria/Backup-Manager"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz"
15 SUGGESTED="ssh rsync mysql postgresql"
16 DEPENDS="bash perl"
17 BUILD_DEPENDS="coreutils-operations gettext"
19 CONFIG_FILES="/etc/backup-manager.conf"
21 # What is the latest version available today?
22 current_version()
23 {
24 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
25 sed '/tag\//!d;s|.*tag/v*||;s|".*||' | sort -Vr | sed q
26 }
28 # Rules to configure and make the package.
29 compile_rules()
30 {
31 make PREFIX=/usr DESTDIR=$DESTDIR install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir $fs/etc
39 cp -a $install/* $fs/
40 cp $fs/usr/share/backup-manager/backup-manager.conf.tpl \
41 $fs/etc/backup-manager.conf
42 rm -r $fs/usr/share/man
43 }