aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/net-snmp.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/net-snmp.rb b/Library/Formula/net-snmp.rb
new file mode 100644
index 000000000..7ddfb2a24
--- /dev/null
+++ b/Library/Formula/net-snmp.rb
@@ -0,0 +1,19 @@
+require 'formula'
+
+class NetSnmp <Formula
+ url 'http://downloads.sourceforge.net/project/net-snmp/net-snmp/5.6/net-snmp-5.6.tar.gz'
+ homepage 'http://www.net-snmp.org/'
+ md5 '89b3a7a77e68daef925abee43a3f7018'
+
+ def install
+ system "./configure", "--prefix=#{prefix}",
+ "--with-persistent-directory=/var/db/net-snmp",
+ "--with-defaults",
+ "--without-rpm",
+ "--with-mib-modules=host ucd-snmp/diskio",
+ "--with-out-mib-modules=mibII/icmp",
+ "--without-kmem-usage"
+ system "make"
+ system "make install"
+ end
+end