aports/testing/icingaweb2-module-fileshipper/APKBUILD
2023-12-04 08:17:20 +00:00

56 lines
1.7 KiB
Text

# Contributor: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=icingaweb2-module-fileshipper
_module=${pkgname/*-/}
pkgver=1.2.0
pkgrel=3
pkgdesc="Provide CSV, JSON, XML and YAML files as an Import Source for the Icinga Director"
url="https://icinga.com/"
arch="noarch !armhf !armv7 !s390x !x86" # see icingaweb2-module-director
license="GPL-2.0"
_php=php82
depends="icingaweb2-module-director ${_php}-xml"
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"
cp -a library module.info run.php \
"$pkgdir/usr/share/webapps/icingaweb2/modules/$_module"
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="
508bde2c160863ced34db57b844e240765a36fd3b3de06c66e7b093a24a93c04c1e83c2a9124554f567d27d19995269a76019fbd03ba5c9351b4dc54e9afc57c icingaweb2-module-fileshipper-1.2.0.tar.gz
"