aboutsummaryrefslogtreecommitdiffstats
path: root/community/homer-api/APKBUILD
blob: 4e702e52fbe9451ce475ba502b4a6f79c9238f14 (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
50
51
52
53
54
55
56
57
58
59
60
61
# Contributor: Leonardo Arena <rnalrd@alpinelinux.org>
# Maintainer: Kaarle Ritvanen <kaarle.ritvanen@datakunkku.fi>
pkgname=homer-api
pkgver=5.0.6
pkgrel=9
pkgdesc="HOMER API"
url="https://github.com/sipcapture/homer-api"
arch="noarch"
license="GPL"
depends="homer-db php7-ctype php7-json php7-pdo_mysql php7-session"
makedepends="$depends_dev"
options="!check"
subpackages="$pkgname-doc homer-db"
source="$pkgname-$pkgver.tar.gz::https://github.com/sipcapture/homer-api/archive/$pkgver.tar.gz
        homer_db_init
        rotation-ini-path.patch"
builddir="$srcdir"/$pkgname-$pkgver

build() {
	return 0
}

package() {
	cd "$builddir"
	local file
	local appdir=$pkgdir/usr/share/webapps/homer

	mkdir -p "$appdir" \
		"$pkgdir"/etc/homer \
		"$pkgdir"/usr/share/doc/homer-api

	mv api "$appdir"

	for file in configuration preferences; do
		mv "$appdir"/api/${file}_example.php "$pkgdir"/etc/homer/$file.php
		ln -s /etc/homer/$file.php "$appdir"/api
	done

	cp -R examples "$pkgdir"/usr/share/doc/homer-api
}

db() {
	depends="mariadb-client perl perl-dbi perl-dbd-mysql"

	cd "$builddir"
	mkdir -p \
		"$subpkgdir"/etc/periodic/daily \
		"$subpkgdir"/usr/share/homer-db

	install -D -m 644 scripts/rotation.ini \
		"$subpkgdir"/etc/homer/rotation.ini
	cp -pr sql/* "$subpkgdir"/usr/share/homer-db

	install -D "$srcdir"/homer_db_init "$subpkgdir"/usr/bin/homer_db_init
	cp -p scripts/homer_* "$subpkgdir"/usr/bin
	ln -s /usr/bin/homer_rotate "$subpkgdir"/etc/periodic/daily
}

sha512sums="620185c19bd348ba68bad3a1992b7d673d29dcfb8a0aeea437a2d31e90f0a21cf6f46a43f0041a583a14d9403e1d8574c6040da1dba397ec2d955b8aba9010d8  homer-api-5.0.6.tar.gz
e305af57a8445b45cb1e894aa34ceea3aeedb60740a636229d470d872f9ebb835e03985faeb685180a3e2c1eae29b49c841f8cbdb4236dbf0323f905a30b0bbb  homer_db_init
0328c4f645601be150f877a31a8c245908da9d9972bed6e1af50f2c43055c9f47376da30c666b6eaa0310637414f65906b88f9a339a1dfa14e1864c70b36fa77  rotation-ini-path.patch"