27 lines
905 B
Ruby
27 lines
905 B
Ruby
class Libpcap < Formula
|
|
desc "Portable library for network traffic capture"
|
|
homepage "http://www.tcpdump.org/"
|
|
url "http://www.tcpdump.org/release/libpcap-1.8.1.tar.gz"
|
|
sha256 "673dbc69fdc3f5a86fb5759ab19899039a8e5e6c631749e48dcd9c6f0c83541e"
|
|
head "git://bpf.tcpdump.org/libpcap"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "59aa812cdec684990f5b6a4a6243116f728155a52de29ad6b553012b5b4bb75f" => :sierra
|
|
sha256 "d65185154e1d7d34070c0b61855fb2cec6fcf0b47f679135ad3f7c4105acd52a" => :el_capitan
|
|
sha256 "cca6e084403fedada146bd162dade2638a6380733c136bb2e65b6657d5c3fe92" => :yosemite
|
|
end
|
|
|
|
keg_only :provided_by_osx
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}",
|
|
"--enable-ipv6",
|
|
"--disable-universal"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
assert_match /lpcap/, shell_output("#{bin}/pcap-config --libs")
|
|
end
|
|
end
|