PKGBUILDs/community/duplicity/PKGBUILD

18 lines
570 B
Bash
Raw Normal View History

2009-10-10 02:15:33 +00:00
# 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
}