# Maintainer: graysky # Contributor: germar pkgname=('backintime' 'backintime-cli') _pkgname="backintime" pkgver=1.1.8 pkgrel=2 arch=('any') url="https://launchpad.net/backintime" license=('GPL') makedepends=('python') _stupidnumber=219057574 source=("https://launchpadlibrarian.net/$_stupidnumber/$_pkgname-$pkgver.tar.gz" "Fix_bug_473-AttributeError.patch" "https://launchpadlibrarian.net/$((_stupidnumber + 1))/$_pkgname-$pkgver.tar.gz.asc") sha256sums=('a1f2d210e95633dfe383eb50b3b560d1e09c43de4ce89dd4cb193cab40cb8a1e' '100248615c15ae277fee4ee7f27b87d85a4f1d964abd540005803da18ee0870e' 'SKIP') validpgpkeys=('3E70692EE3DB8BDDA5991C90615F366D944B4826') # Germar Reitze # https://wiki.archlinux.org/index.php/Makepkg#Signature_checking prepare() { cd "$_pkgname-$pkgver" patch -Np1 -i "$srcdir/Fix_bug_473-AttributeError.patch" } build() { cd "$_pkgname-$pkgver/common" ./configure --python --no-fuse-group make cd "$srcdir/$_pkgname-$pkgver/qt4" ./configure --python make } package_backintime-cli() { pkgdesc="Simple backup system inspired from the Flyback Project and TimeVault. CLI version." depends=('rsync' 'cron' 'openssh' 'python-keyring' 'python-dbus' 'polkit') optdepends=('backintime: QT4 GUI version' 'encfs: encrypted filesystem in user-space' 'pm-utils: for laptops allows an option to not snapshot on battery' 'sshfs: FUSE client based on the ssh file transfer protocol') conflicts=('backintime<1.1.0') replaces=('backintime<1.1.0') cd "$_pkgname-$pkgver/common" make DESTDIR="$pkgdir" install } package_backintime() { pkgdesc="Simple backup system inspired from the Flyback Project and TimeVault. QT4 GUI version." depends=("backintime-cli=$pkgver" 'xorg-xdpyinfo' 'python-pyqt4' 'libnotify' 'ttf-font' 'icu' 'polkit') # note users can optionally install EITHER kompare OR meld but not both! optdepends=('kompare: diff/patch frontend' 'meld: diff/patch frontend' 'python-keyring: store and access passwords safely') conflicts=("backintime<1.1.0") replaces=("backintime<1.1.0") cd "$_pkgname-$pkgver/qt4" make DESTDIR="$pkgdir" install }