# $Id: PKGBUILD 67249 2012-03-05 20:47:53Z lfleischer $ # Maintainer: Kaiting Chen # Contributor: Aaron Schaefer pkgname=duplicity pkgver=0.6.18 pkgrel=2 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=('librsync' 'ncftp' 'python2' 'python-boto' 'python-gnupginterface' 'python-paramiko') source=("http://savannah.nongnu.org/download/$pkgname/$pkgname-$pkgver.tar.gz") md5sums=('66b5e64de43e09d3c3ff9890faf9de07') build() { cd "${srcdir}/${pkgname}-${pkgver}" # python2 fix for file in $(find . -name '*.py' -print); do sed -i 's_^#!.*/usr/bin/python_#!/usr/bin/python2_' $file sed -i 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file done python2 setup.py install --root="$pkgdir" --optimize=1 # fix broken documentation permissions until upstream does (FS#27301) chmod 644 "$pkgdir/usr/share/man/man1/$pkgname.1" chmod 644 "$pkgdir/usr/share/man/man1/rdiffdir.1" chmod 644 "$pkgdir/usr/share/doc/$pkgname-$pkgver"/* }