mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
18 lines
570 B
Bash
18 lines
570 B
Bash
|
# Maintainer: Aaron Schaefer <aaron@elasticdog.com>
|
||
|
pkgname=duplicity
|
||
|
pkgver=0.5.18
|
||
|
pkgrel=1
|
||
|
pkgdesc='A utility for encrypted, bandwidth-efficient backups using the rsync algorithm'
|
||
|
arch=('i686' 'x86_64')
|
||
|
url='http://www.nongnu.org/duplicity/'
|
||
|
license=('GPL')
|
||
|
depends=('gnupg' 'librsync' 'ncftp' 'python' 'python-boto' 'python-gnupginterface')
|
||
|
source=("http://savannah.nongnu.org/download/$pkgname/$pkgname-$pkgver.tar.gz")
|
||
|
md5sums=('77fcbe30b300450af17d811eec339765')
|
||
|
|
||
|
build() {
|
||
|
cd "$srcdir/$pkgname-$pkgver"
|
||
|
|
||
|
python setup.py install --root="$pkgdir" || return 1
|
||
|
}
|