2fcf479adc
Change path from sbin/nagios-plugins to sbin in order to avoid hacks in related formulae. Closes Homebrew/homebrew#12181. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
23 lines
636 B
Ruby
23 lines
636 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 install
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--libexecdir=#{sbin}"
|
|
system "make install"
|
|
system "make install-root"
|
|
end
|
|
|
|
def caveats
|
|
<<-EOS.undent
|
|
All plugins have been installed in:
|
|
#{HOMEBREW_PREFIX}/sbin
|
|
EOS
|
|
end
|
|
end
|