2010-11-16 17:26:14 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class NetSnmp < Formula
|
2010-11-16 17:26:14 +00:00
|
|
|
homepage 'http://www.net-snmp.org/'
|
2012-02-15 03:59:34 +00:00
|
|
|
url 'http://sourceforge.net/projects/net-snmp/files/net-snmp/5.7.1/net-snmp-5.7.1.tar.gz'
|
|
|
|
md5 'c95d08fd5d93df0c11a2e1bdf0e01e0b'
|
2010-11-16 17:26:14 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}",
|
2012-02-15 03:59:34 +00:00
|
|
|
"--with-persistent-directory=#{var}/db/net-snmp",
|
2010-11-16 17:26:14 +00:00
|
|
|
"--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
|