23 lines
597 B
Plaintext
23 lines
597 B
Plaintext
|
# Description: Nrpe plugin for Nagios
|
||
|
# URL: http://www.nagios.org/project/nagiosplugins
|
||
|
# Maintainer: Jose V Beneyto, sepen at crux dot nu
|
||
|
# Depends on: nagios-plugins
|
||
|
|
||
|
name=nagios-plugins-nrpe
|
||
|
version=2.13
|
||
|
release=1
|
||
|
source=(http://downloads.sourceforge.net/sourceforge/nagios/nrpe-$version.tar.gz)
|
||
|
|
||
|
build () {
|
||
|
cd nrpe-$version
|
||
|
|
||
|
./configure --prefix=/usr/share/nagios \
|
||
|
--libexecdir=/usr/lib/nagios/plugins \
|
||
|
--with-nagios-user=nagios \
|
||
|
--with-nagios-group=nagios \
|
||
|
--disable-nls
|
||
|
|
||
|
make check_nrpe
|
||
|
make DESTDIR=$PKG install-plugin
|
||
|
}
|