blob: fe833567f3780382af88e71734f347b946867611 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Contributor: Łukasz Jendrysik <scadu@yandex.com>
# Contributor: Matt Smith <mcs@darkregion.net>
# Maintainer: Matt Smith <mcs@darkregion.net>
pkgname=duplicity
pkgver=0.8.06
pkgrel=0
pkgdesc="Encrypted bandwidth-efficient backup using the rsync algorithm"
url="http://duplicity.nongnu.org/"
arch="all"
license="GPL-2.0-or-later"
depends="python3 py3-boto gnupg ncftp py3-fasteners"
makedepends="python3-dev py3-future py3-setuptools librsync-dev"
subpackages="$pkgname-doc $pkgname-lang"
source="https://code.launchpad.net/duplicity/${pkgver:0:3}-series/$pkgver/+download/duplicity-$pkgver.tar.gz"
build() {
python3 setup.py build
}
check() {
python3 compilec.py
# Run a simple smoke-test
PYTHONPATH="$PWD" python3 bin/duplicity -V | grep -q duplicity
}
package() {
python3 setup.py install --root "$pkgdir"
}
sha512sums="c488df05d8d4e4b35091ce33b6f0167ca3c033746c06200eb5b98706aca5549e96838d31e234836d9e14341721b1f1b887ab89611f27c8202ff034e815bd868e duplicity-0.8.06.tar.gz"
|