blob: c38c194bf9e2756668fcdccaba8cae9d92eb67b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Maintainer: xengineering <me@xengineering.eu>
pkgname=xbackup
pkgver=1.0.0
pkgrel=3
pkgdesc='Convenience wrapper around the Borg backup tool'
arch=('any')
url="https://cgit.xengineering.eu/${pkgname}"
license=('GPL3')
depends=('licenses' 'python' 'borg')
backup=('etc/xbackup/config.json')
source=("git+${url}")
md5sums=('SKIP')
package() {
cd ${srcdir}/${pkgname}
make DESTDIR="${pkgdir}" install
}
|