wok view backintime/receipt @ rev 23709

updated twisted (19.7.0 -> 20.3.0)
author Hans-G?nter Theisgen
date Tue Apr 28 17:04:13 2020 +0100 (2020-04-28)
parents 8296cfe551a1
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="backintime"
4 VERSION="1.2.1"
5 CATEGORY="network"
6 TAGS="backup"
7 SHORT_DESC="A simple backup tool for linux."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="https://github.com/bit-team/backintime"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="$WEB_SITE/releases/download/v$VERSION/$TARBALL"
15 DEPENDS="py3k rsync"
16 BUILD_DEPENDS="$DEPENDS meld" # python-glade2 python-gnome2
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src/common
22 ./configure \
23 --prefix=/usr \
24 --sysconfdir=/etc \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 cp -a $install/* $fs
34 rm -r $fs/usr/share/doc
35 rm -r $fs/usr/share/man
36 }