696aa325d5
New formula for the plugins of... "The Industry Standard In IT Infrastructure Monitoring" -- http://www.nagios.org/ Closes Homebrew/homebrew#6470. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
34 lines
910 B
Ruby
34 lines
910 B
Ruby
require 'formula'
|
|
|
|
class NagiosPlugins < Formula
|
|
url 'http://downloads.sourceforge.net/project/nagiosplug/nagiosplug/1.4.15/nagios-plugins-1.4.15.tar.gz'
|
|
homepage 'http://nagiosplugins.org/'
|
|
md5 '56abd6ade8aa860b38c4ca4a6ac5ab0d'
|
|
|
|
def nagios_sbin; sbin+'nagios-plugins'; end
|
|
|
|
def install
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--libexecdir=#{nagios_sbin}"
|
|
system "make install"
|
|
end
|
|
|
|
def caveats
|
|
<<-EOS.undent
|
|
All plugins are accessible under
|
|
|
|
#{nagios_sbin}
|
|
|
|
and get symlinked to
|
|
|
|
#{HOMEBREW_PREFIX}/sbin/nagios-plugins
|
|
|
|
so that they don't appear in your search path but still can be found by
|
|
nagios across version updates.
|
|
|
|
Please feel free to update your PATH if you want to use them standalone!
|
|
EOS
|
|
end
|
|
end
|