aboutsummaryrefslogtreecommitdiffstats
path: root/main/duplicity/APKBUILD
blob: b3d010e65cc678ecf4441eecb232457517a5f437 (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
31
32
33
34
35
# Contributor: Łukasz Jendrysik <scadu@yandex.com>
# Contributor: Matt Smith <mcs@darkregion.net>
# Maintainer:  Matt Smith <mcs@darkregion.net>
pkgname=duplicity
pkgver=0.7.18
pkgrel=0
pkgdesc="Encrypted bandwidth-efficient backup using the rsync algorithm"
url="http://duplicity.nongnu.org/"
arch="all"
license="GPL"
depends="python2 py-boto gnupg ncftp py2-fasteners"
makedepends="python2-dev py-setuptools librsync-dev"
subpackages="$pkgname-doc $pkgname-lang"
source="https://code.launchpad.net/$pkgname/${pkgver:0:3}-series/$pkgver/+download/$pkgname-$pkgver.tar.gz"
builddir="$srcdir/$pkgname-$pkgver"

build() {
	cd "$builddir"
	python2 setup.py build
}

check() {
	cd "$builddir/duplicity"
	python2 compilec.py
	cd ..
	# Run a simple smoke-test
	PYTHONPATH="$PWD" python2 bin/duplicity -V | grep -q duplicity
}

package() {
	cd "$builddir"
	python2 setup.py install --root "$pkgdir"
}

sha512sums="75940a82b7887846778633bc6256913df7834c5afdc8d75c54018f42b0e79b1048cd8807c00092b93d1504ac4850ba3426cb96307eadd89e59ad18e54ded3780  duplicity-0.7.18.tar.gz"