aboutsummaryrefslogtreecommitdiffstats
path: root/community/safekeep/APKBUILD
blob: 6f807aac22565045d350844286fba4d0073d3e06 (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
38
39
40
41
42
43
44
45
46
47
48
49
# Contributor: Henrik Riomar <henrik.riomar@gmail.com>
# Maintainer: Henrik Riomar <henrik.riomar@gmail.com>
pkgname=safekeep
pkgver=1.5.1
pkgrel=0
pkgdesc="SafeKeep backup system"
url="https://github.com/dimipaun/safekeep"
arch="noarch"
license="GPL-2.0-or-later"
depends="openssh-client python3 rdiff-backup util-linux"
makedepends="asciidoc libxml2-utils xmlto"
install="$pkgname-server.post-install"
subpackages="$pkgname-doc $pkgname-client $pkgname-server"
source="$pkgname-$pkgver.tar.gz::https://github.com/dimipaun/$pkgname/archive/$pkgver.tar.gz
	"

build() {
	make man
	# ionice from util-linux is in /usr/bin (busybox in /bin)
	sed -i 's|PATH=/sbin:/bin:/usr/sbin:/usr/bin|PATH=/sbin:/usr/sbin:/usr/bin:/bin|' safekeep.cron
}

check() {
	PATH=".:$PATH" make check
}

client() {
	pkgdesc="SafeKeep backup system - client"
	depends="$pkgname=$pkgver-r$pkgrel"

	mkdir -p "$subpkgdir"
	# just a meta package
}

server() {
	pkgdesc="SafeKeep backup system - server"
	depends="$pkgname=$pkgver-r$pkgrel"

	mkdir -p "$subpkgdir"
	mv "$pkgdir"/etc "$subpkgdir"/etc
	mkdir "$subpkgdir"/etc/periodic
	mv "$subpkgdir"/etc/cron.daily "$subpkgdir"/etc/periodic/daily
}

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

sha512sums="8977edadc48ccff4cf6cc524addf0b47a10320fb134adc78ff6663b33d8856393a448212814224b990f4f77876b06b1ef2fb47fe6e4a8a8d3678b0900c6b54f3  safekeep-1.5.1.tar.gz"