82 lines
2.9 KiB
Ruby
82 lines
2.9 KiB
Ruby
class Wireshark < Formula
|
|
desc "Graphical network analyzer and capture tool"
|
|
homepage "https://www.wireshark.org"
|
|
url "https://www.wireshark.org/download/src/all-versions/wireshark-2.6.6.tar.xz"
|
|
mirror "https://1.eu.dl.wireshark.org/src/wireshark-2.6.6.tar.xz"
|
|
sha256 "487933ea075bdbb25d8df06017d9c4f49fc20eb7f6ec80af086718ed5550e863"
|
|
head "https://code.wireshark.org/review/wireshark", :using => :git
|
|
|
|
bottle do
|
|
sha256 "aff7a3542fa872dce596fcd0032b5cca27250a2c9ac0afd8c2d54b8ca9d23436" => :mojave
|
|
sha256 "9d1299ffdb033a20f17803f550be144e19d6e3df29f6f4eb060bcabd1292f7f0" => :high_sierra
|
|
sha256 "b188a3081dcf5bd3b9dbf21d4bfe68d3e4815038a458a4bd4dcf4b14e24784bb" => :sierra
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "c-ares"
|
|
depends_on "glib"
|
|
depends_on "gnutls"
|
|
depends_on "libgcrypt"
|
|
depends_on "libmaxminddb"
|
|
depends_on "libsmi"
|
|
depends_on "libssh"
|
|
depends_on "lua@5.1"
|
|
depends_on "nghttp2"
|
|
|
|
def install
|
|
args = std_cmake_args + %W[
|
|
-DENABLE_CARES=ON
|
|
-DENABLE_GNUTLS=ON
|
|
-DENABLE_MAXMINDDB=ON
|
|
-DBUILD_wireshark_gtk=OFF
|
|
-DENABLE_PORTAUDIO=OFF
|
|
-DENABLE_LUA=ON
|
|
-DLUA_INCLUDE_DIR=#{Formula["lua@5.1"].opt_include}/lua-5.1
|
|
-DLUA_LIBRARY=#{Formula["lua@5.1"].opt_lib}/liblua5.1.dylib
|
|
-DCARES_INCLUDE_DIR=#{Formula["c-ares"].opt_include}
|
|
-DGCRYPT_INCLUDE_DIR=#{Formula["libgcrypt"].opt_include}
|
|
-DGNUTLS_INCLUDE_DIR=#{Formula["gnutls"].opt_include}
|
|
-DMAXMINDDB_INCLUDE_DIR=#{Formula["libmaxminddb"].opt_include}
|
|
-DENABLE_SMI=ON
|
|
-DBUILD_sshdump=ON
|
|
-DBUILD_ciscodump=ON
|
|
|
|
-DENABLE_NGHTTP2=ON
|
|
-DBUILD_wireshark=OFF
|
|
-DENABLE_APPLICATION_BUNDLE=OFF
|
|
-DENABLE_QT5=OFF
|
|
]
|
|
|
|
system "cmake", *args, "."
|
|
system "make", "install"
|
|
|
|
# Install headers
|
|
(include/"wireshark").install Dir["*.h"]
|
|
(include/"wireshark/epan").install Dir["epan/*.h"]
|
|
(include/"wireshark/epan/crypt").install Dir["epan/crypt/*.h"]
|
|
(include/"wireshark/epan/dfilter").install Dir["epan/dfilter/*.h"]
|
|
(include/"wireshark/epan/dissectors").install Dir["epan/dissectors/*.h"]
|
|
(include/"wireshark/epan/ftypes").install Dir["epan/ftypes/*.h"]
|
|
(include/"wireshark/epan/wmem").install Dir["epan/wmem/*.h"]
|
|
(include/"wireshark/wiretap").install Dir["wiretap/*.h"]
|
|
(include/"wireshark/wsutil").install Dir["wsutil/*.h"]
|
|
end
|
|
|
|
def caveats; <<~EOS
|
|
This formula only installs the command-line utilities by default.
|
|
|
|
Install Wireshark.app with Homebrew Cask:
|
|
brew cask install wireshark
|
|
|
|
If your list of available capture interfaces is empty
|
|
(default macOS behavior), install ChmodBPF:
|
|
brew cask install wireshark-chmodbpf
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
system bin/"randpkt", "-b", "100", "-c", "2", "capture.pcap"
|
|
output = shell_output("#{bin}/capinfos -Tmc capture.pcap")
|
|
assert_equal "File name,Number of packets\ncapture.pcap,2\n", output
|
|
end
|
|
end
|