aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/net-snmp.rb
blob: 06e969910b8949081d963ae3012f8106c5cf9575 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
require 'formula'

class NetSnmp < Formula
  homepage 'http://www.net-snmp.org/'
  url 'https://downloads.sourceforge.net/project/net-snmp/net-snmp/5.7.2/net-snmp-5.7.2.tar.gz'
  sha1 'c493027907f32400648244d81117a126aecd27ee'

  devel do
    url 'https://downloads.sourceforge.net/project/net-snmp/net-snmp/5.7.3-pre-releases/net-snmp-5.7.3.pre1.tar.gz'
    version '5.7.3.pre1'
    sha1 '3420d54a8e78e460c8900bd752b91687fcba7b80'
  end

  def install
    system "./configure", "--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"
    system "make"
    system "make install"
  end
end