aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/nagios-plugins.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/nagios-plugins.rb')
-rw-r--r--Library/Formula/nagios-plugins.rb34
1 files changed, 34 insertions, 0 deletions
diff --git a/Library/Formula/nagios-plugins.rb b/Library/Formula/nagios-plugins.rb
new file mode 100644
index 000000000..b2b1e62db
--- /dev/null
+++ b/Library/Formula/nagios-plugins.rb
@@ -0,0 +1,34 @@
+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