diff options
author | Roberto Oliveira <robertoguimaraes8@gmail.com> | 2017-06-19 12:50:31 +0000 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2017-06-19 13:53:39 +0000 |
commit | a4424294c71a6077f8e34195b95ad779cb03a93e (patch) | |
tree | dd8493a13f5616f37ea0116f9fc0952aeebef438 /testing/icingaweb2-module-businessprocess/APKBUILD | |
parent | e8d85ba98be5d81d3a0adc58a5298d0aefcdfcff (diff) | |
download | aports-a4424294c71a6077f8e34195b95ad779cb03a93e.tar.bz2 aports-a4424294c71a6077f8e34195b95ad779cb03a93e.tar.xz |
testing/icingaweb2-module-businessprocess: fix build and enable on ppc64le
The folder /etc/icingaweb2/modules/businessprocess was missing and chgrp command
was failing. Create the folder to fix build and also enable build on ppc64le as
icingaweb2-module-director package is enabled.
Diffstat (limited to 'testing/icingaweb2-module-businessprocess/APKBUILD')
-rw-r--r-- | testing/icingaweb2-module-businessprocess/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/testing/icingaweb2-module-businessprocess/APKBUILD b/testing/icingaweb2-module-businessprocess/APKBUILD index bee2017f8d..c10c86f720 100644 --- a/testing/icingaweb2-module-businessprocess/APKBUILD +++ b/testing/icingaweb2-module-businessprocess/APKBUILD @@ -3,10 +3,10 @@ pkgname=icingaweb2-module-businessprocess _module=${pkgname/*-/} pkgver=2.0.0 -pkgrel=0 +pkgrel=1 pkgdesc="Manage Business Processes in Icinga Web 2 " url="http://www.icinga.org" -arch="noarch !armhf !ppc64le" +arch="noarch !armhf" license="GPL2" _php=php5 depends="icingaweb2-module-director" @@ -22,6 +22,7 @@ build() { 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 application library public \ |