net-snmp 5.6

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
include 2010-11-16 17:26:14 +00:00 committed by Adam Vandenberg
parent 7514726465
commit 364955c463
1 changed files with 19 additions and 0 deletions

19
Formula/net-snmp.rb Normal file
View File

@ -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