47 lines
1.6 KiB
Ruby
47 lines
1.6 KiB
Ruby
class Zeek < Formula
|
|
desc "Network security monitor"
|
|
homepage "https://www.zeek.org"
|
|
url "https://github.com/zeek/zeek.git",
|
|
tag: "v3.1.5",
|
|
revision: "468ede389827cbe68505ce36c08d7fd4eb869111"
|
|
head "https://github.com/zeek/zeek.git"
|
|
|
|
bottle do
|
|
sha256 "7575472a6731bcfe6d54550a512467ed4bdadf7f1a6f22f81120c28c3ef2aa7a" => :catalina
|
|
sha256 "cad4b6bc87db0e6ddad6e920f391b88e5047c296c2b5f2feb02c53b463a9c19c" => :mojave
|
|
sha256 "26746088112e63e872a9030c09b0759bd977038ef15a03cbae992c3952cbd661" => :high_sierra
|
|
end
|
|
|
|
depends_on "bison" => :build
|
|
depends_on "cmake" => :build
|
|
depends_on "swig" => :build
|
|
depends_on "caf"
|
|
depends_on "geoip"
|
|
depends_on :macos # Due to Python 2 (https://github.com/zeek/zeek/issues/706)
|
|
depends_on "openssl@1.1"
|
|
|
|
uses_from_macos "flex"
|
|
uses_from_macos "libpcap"
|
|
|
|
def install
|
|
mkdir "build" do
|
|
system "cmake", "..", *std_cmake_args,
|
|
"-DDISABLE_PYTHON_BINDINGS=on",
|
|
"-DBROKER_DISABLE_TESTS=on",
|
|
"-DBUILD_SHARED_LIBS=on",
|
|
"-DINSTALL_AUX_TOOLS=on",
|
|
"-DINSTALL_ZEEKCTL=on",
|
|
"-DCAF_ROOT_DIR=#{Formula["caf"].opt_prefix}",
|
|
"-DOPENSSL_ROOT_DIR=#{Formula["openssl@1.1"].opt_prefix}",
|
|
"-DZEEK_ETC_INSTALL_DIR=#{etc}",
|
|
"-DZEEK_LOCAL_STATE_DIR=#{var}"
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|
|
test do
|
|
assert_match "version #{version}", shell_output("#{bin}/zeek --version")
|
|
assert_match "ARP Parsing", shell_output("#{bin}/zeek --print-plugins")
|
|
end
|
|
end
|