Package Details: zbackup 1.5-1

Git Clone URL: https://aur.archlinux.org/zbackup.git (read-only, click to copy)
Package Base: zbackup
Description: A versatile deduplicating backup tool
Upstream URL: http://zbackup.org
Licenses: GPL2
Submitter: artemklevtsov
Maintainer: severach
Last Packager: severach
Votes: 13
Popularity: 0.000000
First Submitted: 2013-07-23 13:50 (UTC)
Last Updated: 2024-01-02 06:59 (UTC)

Latest Comments

luukko commented on 2022-01-04 16:47 (UTC)

Another patch is also needed now because of a protobuf API change: https://github.com/zbackup/zbackup/pull/158

luukko commented on 2021-07-31 05:57 (UTC)

This package needs to instruct cmake to use an older C++ standard in order to compile with gcc >= 11. There's a patch at https://github.com/zbackup/zbackup/pull/154

flaviut commented on 2014-11-26 20:56 (UTC)

Oop, I forgot to bump the pkgrel. That also needs to get done.

flaviut commented on 2014-11-26 20:53 (UTC)

Please apply this patch to include the `tartool` utility that comes bundled with it: diff --git 1/PKGBUILD.old 2/PKGBUILD index 21832ad..c9fb1db 100644 --- 1/PKGBUILD.old +++ 2/PKGBUILD @@ -14,9 +14,14 @@ build() { cd ${srcdir}/${pkgname}-${pkgver} cmake . -DCMAKE_INSTALL_PREFIX=/usr make + cd tartool + cmake . -DCMAKE_INSTALL_PREFIX=/usr + make } package() { cd ${srcdir}/${pkgname}-${pkgver} make DESTDIR="${pkgdir}" install -} \ No newline at end of file + cd tartool + make DESTDIR="${pkgdir}" install +}

estan commented on 2014-10-25 18:02 (UTC)

Hi. Below is a patch which does the following: - Update to 1.3. - No space around ">=" in makedepends. - Use SHA256 sum instead of MD5. Cheers, Elvis --- PKGBUILD.orig 2014-10-25 19:33:20.041043600 +0200 +++ PKGBUILD 2014-10-25 19:44:22.091050808 +0200 @@ -1,14 +1,14 @@ pkgname=zbackup -pkgver=1.2 +pkgver=1.3 pkgrel=1 pkgdesc='A versatile deduplicating backup tool' arch=('i686' 'x86_64') url='http://zbackup.org' license=('GPL2') depends=('xz' 'openssl' 'protobuf') -makedepends=('cmake >= 2.8.2') +makedepends=('cmake>=2.8.2') source=(https://github.com/${pkgname}/${pkgname}/archive/${pkgver}.tar.gz) -md5sums=('e816af0e1381a35236488dbe86003d14') +sha256sums=('0c85232918295984fccb35804dbaeaa38df13c923814640524a8d9de2c6db1ee') build() { cd ${srcdir}/${pkgname}-${pkgver}