homebrew-core/Formula/net-snmp.rb
2018-12-27 10:35:34 +01:00

54 lines
1.7 KiB
Ruby

class NetSnmp < Formula
desc "Implements SNMP v1, v2c, and v3, using IPv4 and IPv6"
homepage "http://www.net-snmp.org/"
url "https://downloads.sourceforge.net/project/net-snmp/net-snmp/5.8/net-snmp-5.8.tar.gz"
sha256 "b2fc3500840ebe532734c4786b0da4ef0a5f67e51ef4c86b3345d697e4976adf"
bottle do
sha256 "09d497fa5910198db3a3834d097df9f1069b8f211cb38b57b9ac78738fad9272" => :mojave
sha256 "05d9e1c66150e58af4a5c4167193551684b8bd06bfbbe0320a2ac4bf33099544" => :high_sierra
sha256 "366c28c25db9b040e115850a606c1859e7c61b3efd9ad4580fe57d7464065ee1" => :sierra
sha256 "00d85edcab504df6828344a70d1b4d8eddfce656ef379144e49bf52d55572863" => :el_capitan
end
keg_only :provided_by_macos
depends_on "openssl"
def install
# https://sourceforge.net/p/net-snmp/bugs/2504/
# I suspect upstream will fix this in the first post-Mojave release but
# if it's not fixed in that release this should be reported upstream.
(buildpath/"include/net-snmp/system/darwin18.h").write <<~EOS
#include <net-snmp/system/darwin17.h>
EOS
args = %W[
--disable-debugging
--prefix=#{prefix}
--enable-ipv6
--with-defaults
--with-persistent-directory=#{var}/db/net-snmp
--with-logfile=#{var}/log/snmpd.log
--with-mib-modules=host\ ucd-snmp/diskio
--without-rpm
--without-kmem-usage
--disable-embedded-perl
--without-perl-modules
--with-openssl=#{Formula["openssl"].opt_prefix}
]
system "./configure", *args
system "make"
system "make", "install"
end
def post_install
(var/"db/net-snmp").mkpath
(var/"log").mkpath
end
test do
assert_match version.to_s, shell_output("#{bin}/snmpwalk -V 2>&1")
end
end