2011-07-19 09:48:28 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class NagiosPlugins < Formula
|
|
|
|
homepage 'http://nagiosplugins.org/'
|
2012-07-31 21:36:29 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/nagiosplug/nagiosplug/1.4.16/nagios-plugins-1.4.16.tar.gz'
|
|
|
|
sha1 '52db48b15572b98c6fcd8aaec2ef4d2aad7640d3'
|
2011-07-19 09:48:28 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug",
|
|
|
|
"--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
2012-05-10 10:50:53 +00:00
|
|
|
"--libexecdir=#{sbin}"
|
2011-07-19 09:48:28 +00:00
|
|
|
system "make install"
|
2011-11-22 22:11:39 +00:00
|
|
|
system "make install-root"
|
2011-07-19 09:48:28 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def caveats
|
|
|
|
<<-EOS.undent
|
2012-05-10 10:50:53 +00:00
|
|
|
All plugins have been installed in:
|
|
|
|
#{HOMEBREW_PREFIX}/sbin
|
2011-07-19 09:48:28 +00:00
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|