PKGBUILDs/community/duplicity/PKGBUILD
2009-10-09 21:15:33 -05:00

17 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
}