desktop/bup/PKGBUILD

29 lines
565 B
Bash
Raw Normal View History

2014-01-27 01:32:22 +08:00
pkgname=bup
2017-01-31 06:25:05 +08:00
pkgver=0.29
pkgrel=1
2014-01-27 01:32:22 +08:00
pkgdesc="Highly efficient file backup system based on the git packfile format."
arch=('x86_64')
url="http://github.com/bup/bup"
license=('GPL')
2016-10-23 20:49:23 +08:00
depends=('python-fuse' 'par2cmdline' 'python2-pylibacl' 'python2-pyxattr')
2014-01-27 01:32:22 +08:00
conflicts=('bup-git')
source=("git+https://github.com/bup/bup.git#tag=${pkgver}")
2016-05-25 17:32:20 +08:00
sha1sums=('SKIP')
2014-01-27 01:32:22 +08:00
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
}