wok-next view rsnapshot/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
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 }