summaryrefslogtreecommitdiff
path: root/archlinux/PKGBUILD
blob: 923e25d7769ccf1490a98bfdf526240aca288de8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37

# Maintainer: xengineering <me@xengineering.eu>
pkgname=xbackup
pkgver=0.0.1
pkgrel=1
epoch=
pkgdesc='Convenience wrapper around the Borg backup tool'
arch=('any')
url='https://xengineering.eu'
license=('GPL3')
groups=()
depends=('licenses' 'python' 'borg')
makedepends=()
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=('etc/xbackup/config.json')
options=()
install=
changelog=
source=("${pkgname}.tar.gz")
noextract=()
md5sums=('SKIP')
validpgpkeys=()

build() {
	#./configure --prefix=/usr
	cd ${pkgname}
	make all
}

package() {
	cd ${pkgname}
	make DESTDIR="${pkgdir}" install
}