wok-next view rsnapshot/receipt @ rev 21172

rsh -> rsh-redone
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Apr 14 14:28:53 2019 +0200 (2019-04-14)
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 }