mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
24 lines
522 B
Bash
24 lines
522 B
Bash
pkgname=bup
|
|
pkgver=0.29.2
|
|
pkgrel=1
|
|
pkgdesc="Highly efficient file backup system based on the git packfile format."
|
|
arch=('x86_64')
|
|
url='https://bup.github.io/'
|
|
license=('GPL')
|
|
depends=('python2-fuse' 'par2cmdline' 'python2-pylibacl' 'python2-pyxattr')
|
|
conflicts=('bup-git')
|
|
source=("git+https://github.com/bup/bup.git#tag=${pkgver}")
|
|
sha256sums=('SKIP')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname
|
|
## add -Wno-format in CFLAGS
|
|
CFLAGS="$CFLAGS -Wno-format"
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname
|
|
make DESTDIR=$pkgdir install
|
|
}
|