desktop/bup/PKGBUILD
AlmAck 0af05b343a kde applications 16.12.0
renamed checksums to kdeapps.sums
added for all packages the pgp signature
for new/removed packages check: https://community.kde.org/Applications/16.12_Release_Notes#Tarballs_that_we_have_split
2016-12-20 21:48:24 +00:00

29 lines
567 B
Bash

pkgname=bup
pkgver=0.28.1
pkgrel=2
pkgdesc="Highly efficient file backup system based on the git packfile format."
arch=('x86_64')
url="http://github.com/bup/bup"
license=('GPL')
depends=('python-fuse' 'par2cmdline' 'python2-pylibacl' 'python2-pyxattr')
conflicts=('bup-git')
source=("git+https://github.com/bup/bup.git#tag=${pkgver}")
sha1sums=('SKIP')
build() {
cd $srcdir/$pkgname
## add -Wno-format in CFLAGS
CFLAGS="$CFLAGS -Wno-format"
make
}
test() {
cd $srcdir/$pkgname
make test
}
package() {
cd $srcdir/$pkgname
make DESTDIR=$pkgdir install
}