wok-next view icinga/receipt @ rev 20785

gpgme: add gnupg, since build can not find gpgconf and gpg
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 07:02:52 2018 +0000 (2018-06-09)
parents 27bfe81dc6bd
children d5aab818505e
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="erjo@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.icinga.org"
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=$DESTDIR \
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 }