aboutsummaryrefslogtreecommitdiffstats
path: root/community/icingaweb2-module-director/APKBUILD
blob: 6427de08f5de691f3d77e2a40097f79a71d952f8 (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
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=icingaweb2-module-director
_module=${pkgname/*-/}
pkgver=1.7.0
pkgrel=0
pkgdesc="Configuration frontend for Icinga 2, integrated automation"
url="http://www.icinga.org"
arch="noarch !armhf !armv7"
license="GPL-2.0"
_php=php7
depends="icingaweb2 ${_php}-curl"
options="!check"
pkggroups="icingaweb2"
subpackages="$pkgname-doc"
source="$pkgname-$pkgver.tar.gz::https://github.com/Icinga/$pkgname/archive/v$pkgver.tar.gz"
builddir="$srcdir/$pkgname-$pkgver"

build() {
	cd "$builddir"
	return 0
}

package() {
	cd "$builddir"
	mkdir -p "$pkgdir/etc/icingaweb2/modules/$_module"
	mkdir -p "$pkgdir/usr/share/doc/$pkgname"
	mkdir -p "$pkgdir/usr/share/webapps/icingaweb2/modules/$_module"
	mkdir -p "$pkgdir/usr/share/webapps/icingaweb2/modules/$_module/contrib"
	cp -a application library public schema test \
		configuration.php module.info run.php \
		"$pkgdir/usr/share/webapps/icingaweb2/modules/$_module"
	cp -a contrib/*-agent-installer \
		"$pkgdir/usr/share/webapps/icingaweb2/modules/$_module/contrib"
    cp -a doc "$pkgdir/usr/share/doc/$pkgname"
	chgrp -R $pkggroups "$pkgdir/etc/icingaweb2/modules/$_module"

	cat >"$pkgdir"/usr/share/doc/$pkgname/README.alpine <<EOF
You need to fix /etc/icingaweb2/modules/$_module with the owner of the user of your webserver

For nginx, as example:
    # chown -R nginx /etc/icingaweb2/modules/$_module
or
    # chown -R nobody /etc/icingaweb2/modules/$_module

For Apache:
    # chown -R apache /etc/icingaweb2/modules/$_module

For lighttpd:
    # chown -R lighttpd /etc/icingaweb2/modules/$_module

Remember to enable the module with:

    # icingacli module enable $_module

EOF

}

sha512sums="6c2f8ac12759015146ae69a0678f7f7e4145add6849450c9583819d8ad0f05613ca331cf4660af04bcad77aa21f59355de8d7be36de809bfd6621c28f7d85eca  icingaweb2-module-director-1.7.0.tar.gz"