wok-next view rsnapshot/receipt @ rev 21196

updated scrollz again (2.2.3 -> 2.3)
author Hans-G?nter Theisgen
date Thu Oct 03 16:09:40 2019 +0100 (2019-10-03)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="rsnapshot"
4 VERSION="1.4.2"
5 CATEGORY="system-tools"
6 SHORT_DESC="A remote filesystem snapshot utility"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://rsnapshot.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/rsnapshot/rsnapshot/archive/$VERSION.tar.gz"
14 BUILD_DEPENDS="perl rsync autoconf automake libtool"
16 compile_rules() {
17 ./autogen.sh
18 ./configure $CONFIGURE_ARGS &&
19 make &&
20 make DESTDIR=$install install || return 1
22 mv $install/etc/rsnapshot.conf.default $install/etc/rsnapshot.conf
23 }
25 genpkg_rules() {
26 copy @std
27 CONFIG_FILES="/etc/rsnapshot.conf"
28 DEPENDS="perl rsync"
29 }