a7d4bb4d71
Closes Homebrew/homebrew#25231. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
62 lines
1.8 KiB
Ruby
62 lines
1.8 KiB
Ruby
require 'formula'
|
|
|
|
class Lldpd < Formula
|
|
homepage 'http://vincentbernat.github.io/lldpd/'
|
|
url 'http://media.luffy.cx/files/lldpd/lldpd-0.7.7.tar.gz'
|
|
sha1 '4471e5fcd66d650b6327842a9e2e779e546f2491'
|
|
|
|
option 'with-snmp', "Build SNMP subagent support"
|
|
option 'with-json', "Build JSON support for lldpcli"
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'readline'
|
|
depends_on 'libevent'
|
|
depends_on 'net-snmp' if build.include? 'with-snmp'
|
|
depends_on 'jansson' if build.include? 'with-json'
|
|
|
|
def install
|
|
readline = Formula.factory 'readline'
|
|
args = [ "--prefix=#{prefix}",
|
|
"--with-xml",
|
|
"--with-readline",
|
|
"--with-privsep-chroot=/var/empty",
|
|
"--with-privsep-user=nobody",
|
|
"--with-privsep-group=nogroup",
|
|
"--with-launchddaemonsdir=no",
|
|
"CPPFLAGS=-I#{readline.include} -DRONLY=1",
|
|
"LDFLAGS=-L#{readline.lib}" ]
|
|
args << "--with-snmp" if build.include? 'with-snmp'
|
|
args << "--with-json" if build.include? 'with-json'
|
|
|
|
system "./configure", *args
|
|
system "make"
|
|
system "make install"
|
|
end
|
|
|
|
plist_options :startup => true
|
|
|
|
def plist
|
|
additional_args = ""
|
|
if build.include? 'with-snmp'
|
|
additional_args += "<string>-x</string>"
|
|
end
|
|
return <<-EOS.undent
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>Label</key>
|
|
<string>#{plist_name}</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>#{opt_prefix}/sbin/lldpd</string>
|
|
#{additional_args}
|
|
</array>
|
|
<key>RunAtLoad</key><true/>
|
|
<key>KeepAlive</key><true/>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
end
|