wok-next view icinga/receipt @ rev 21039

mariadb 10.3.10
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 09 03:18:57 2018 +0200 (2018-11-09)
parents 757d032c55c7
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="icinga"
4 VERSION="1.2.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="Open Source host, service and network monitoring program"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://icinga.com/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 BUILD_DEPENDS="perl"
16 compile_rules() {
17 ./configure \
18 --with-htmurl=/icinga \
19 --with-lockfile=/var/run/icinga.pid \
20 --with-icinga-user=nobody \
21 --with-icinga-group=nogroup \
22 --with-command-user=nobody \
23 --with-command-group=www \
24 --exec-prefix=/usr/bin \
25 --bindir=/usr/bin \
26 --sbindir=/usr/lib/icinga/cgi \
27 --libexecdir=/usr/lib/icinga/plugins \
28 --datadir=/usr/share/icinga \
29 --sysconfdir=/etc/icinga \
30 --localstatedir=/var/log/icinga \
31 --with-mail=/usr/bin/mailx \
32 $CONFIGURE_ARGS &&
33 make all &&
34 make DESTDIR=$install \
35 install \
36 install-commandmode \
37 install-config \
38 install-webconf \
39 install-idoutils \
40 install-api
42 # TODO: check files permissions
43 }
45 genpkg_rules() {
46 copy @std
47 }