wok-next view rsnapshot/receipt @ rev 20607

perdition: up 2.2
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Apr 19 15:57:59 2018 +0300 (2018-04-19)
parents bf2a0cb054c1
children d5aab818505e
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="slaxemulator@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.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=$DESTDIR 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 }