aboutsummaryrefslogtreecommitdiffstats
path: root/community/homer-api/APKBUILD
blob: 703983e76db4c80b437f57365487c36517800d5e (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
62
63
64
65
66
67
68
69
70
71
72
73
74
# Contributor: Leonardo Arena <rnalrd@alpinelinux.org>
# Maintainer: Kaarle Ritvanen <kaarle.ritvanen@datakunkku.fi>
pkgname=homer-api
pkgver=5.0.6
pkgrel=13
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-api-ldap homer-db"
source="$pkgname-$pkgver.tar.gz::https://github.com/sipcapture/homer-api/archive/$pkgver.tar.gz
        homer_db_init
        php7.patch
        rotation-ini-path.patch
        0001-Update-LDAP.php.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
}

ldap() {
	depends="$pkgname php7-ldap"

	local dir=usr/share/webapps/homer/api/Authentication
	mkdir -p "$subpkgdir"/$dir
	mv "$pkgdir"/$dir/LDAP.php "$subpkgdir"/$dir
}

sha512sums="620185c19bd348ba68bad3a1992b7d673d29dcfb8a0aeea437a2d31e90f0a21cf6f46a43f0041a583a14d9403e1d8574c6040da1dba397ec2d955b8aba9010d8  homer-api-5.0.6.tar.gz
e305af57a8445b45cb1e894aa34ceea3aeedb60740a636229d470d872f9ebb835e03985faeb685180a3e2c1eae29b49c841f8cbdb4236dbf0323f905a30b0bbb  homer_db_init
068d7b03c51aed4c144b6f8382a367016432b5f2c22e79e19da516536bf22c9bec4fbedf81130e32d6d919be746610563295513412f14c565fc917bdc0a7b004  php7.patch
0328c4f645601be150f877a31a8c245908da9d9972bed6e1af50f2c43055c9f47376da30c666b6eaa0310637414f65906b88f9a339a1dfa14e1864c70b36fa77  rotation-ini-path.patch
db83978e1c1150dadddbede0ea860b8819f1c1a804b706b65f212105df80ece0096af6f5d2eb9431271fa3a1f6d0a2fe51ac4f118dc0f371009c0ff812908612  0001-Update-LDAP.php.patch"