111 lines
4.2 KiB
Ruby
111 lines
4.2 KiB
Ruby
class Suricata < Formula
|
|
desc "Network IDS, IPS, and security monitoring engine"
|
|
homepage "https://suricata.io"
|
|
url "https://www.openinfosecfoundation.org/download/suricata-6.0.6.tar.gz"
|
|
sha256 "00173634fa76aee636e38a90b1c02616c903e42173107d47b4114960b5fbe839"
|
|
license "GPL-2.0-only"
|
|
|
|
livecheck do
|
|
url "https://suricata.io/download/"
|
|
regex(/href=.*?suricata[._-]v?(\d+(?:\.\d+)+)\.t/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 arm64_monterey: "bb2595de1c9cb6e2844c368edb5d33e9b8794fc5ac98ac08ff4fb0346e50e812"
|
|
sha256 arm64_big_sur: "3120134a41f3b40661601c6d7d8a2979e59a67fff4a55dd12e09e760d5facba0"
|
|
sha256 monterey: "101bed9879dec18a6dbcd1f4017f98b56aade302e58dfc1b5569e168bb2474ac"
|
|
sha256 big_sur: "d1837502a422205904afafea0a3001fb6dc41031272c1d203b7d7db737325919"
|
|
sha256 catalina: "cae10715c28a6efeb7597428c59c577bb24967f05da58ec313d604ecb8c23b1e"
|
|
sha256 x86_64_linux: "ea9ece149754a206fd1de53d3944329306d73504bc57f7b14860f9a4622edb1e"
|
|
end
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "rust" => :build
|
|
depends_on "jansson"
|
|
depends_on "libmagic"
|
|
depends_on "libnet"
|
|
depends_on "libyaml"
|
|
depends_on "lz4"
|
|
depends_on "nspr"
|
|
depends_on "nss"
|
|
depends_on "pcre"
|
|
depends_on "python@3.9"
|
|
|
|
uses_from_macos "libpcap"
|
|
|
|
resource "argparse" do
|
|
url "https://files.pythonhosted.org/packages/18/dd/e617cfc3f6210ae183374cd9f6a26b20514bbb5a792af97949c5aacddf0f/argparse-1.4.0.tar.gz"
|
|
sha256 "62b089a55be1d8949cd2bc7e0df0bddb9e028faefc8c32038cc84862aefdd6e4"
|
|
end
|
|
|
|
resource "PyYAML" do
|
|
url "https://files.pythonhosted.org/packages/36/2b/61d51a2c4f25ef062ae3f74576b01638bebad5e045f747ff12643df63844/PyYAML-6.0.tar.gz"
|
|
sha256 "68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"
|
|
end
|
|
|
|
resource "simplejson" do
|
|
url "https://files.pythonhosted.org/packages/7a/47/c7cc3d4ed15f09917838a2fb4e1759eafb6d2f37ebf7043af984d8b36cf7/simplejson-3.17.6.tar.gz"
|
|
sha256 "cf98038d2abf63a1ada5730e91e84c642ba6c225b0198c3684151b1f80c5f8a6"
|
|
end
|
|
|
|
# Fix -flat_namespace being used on Big Sur and later.
|
|
patch do
|
|
url "https://raw.githubusercontent.com/Homebrew/formula-patches/03cf8088210822aa2c1ab544ed58ea04c897d9c4/libtool/configure-big_sur.diff"
|
|
sha256 "35acd6aebc19843f1a2b3a63e880baceb0f5278ab1ace661e57a502d9d78c93c"
|
|
directory "libhtp"
|
|
end
|
|
|
|
def install
|
|
ENV.prepend_create_path "PYTHONPATH", libexec/"vendor"/Language::Python.site_packages("python3")
|
|
resources.each do |r|
|
|
r.stage do
|
|
system "python3", *Language::Python.setup_install_args(libexec/"vendor")
|
|
end
|
|
end
|
|
|
|
jansson = Formula["jansson"]
|
|
libmagic = Formula["libmagic"]
|
|
libnet = Formula["libnet"]
|
|
|
|
args = %W[
|
|
--disable-dependency-tracking
|
|
--disable-silent-rules
|
|
--prefix=#{prefix}
|
|
--sysconfdir=#{etc}
|
|
--localstatedir=#{var}
|
|
--with-libjansson-includes=#{jansson.opt_include}
|
|
--with-libjansson-libraries=#{jansson.opt_lib}
|
|
--with-libmagic-includes=#{libmagic.opt_include}
|
|
--with-libmagic-libraries=#{libmagic.opt_lib}
|
|
--with-libnet-includes=#{libnet.opt_include}
|
|
--with-libnet-libraries=#{libnet.opt_lib}
|
|
]
|
|
|
|
if OS.mac?
|
|
args << "--enable-ipfw"
|
|
# Workaround for dyld[98347]: symbol not found in flat namespace '_iconv'
|
|
ENV.append "LIBS", "-liconv" if MacOS.version >= :monterey
|
|
else
|
|
args << "--with-libpcap-includes=#{Formula["libpcap"].opt_include}"
|
|
args << "--with-libpcap-libraries=#{Formula["libpcap"].opt_lib}"
|
|
end
|
|
|
|
system "./configure", *args
|
|
# setuptools>=60 prefers its own bundled distutils, which breaks the installation
|
|
# pkg_resources.DistributionNotFound: The 'suricata-update==1.2.3' distribution was not found
|
|
# Remove when deprecated distutils installation is no longer used
|
|
with_env(SETUPTOOLS_USE_DISTUTILS: "stdlib") do
|
|
system "make", "install-full"
|
|
end
|
|
|
|
bin.env_script_all_files(libexec/"bin", PYTHONPATH: ENV["PYTHONPATH"])
|
|
|
|
# Leave the magic-file: prefix in otherwise it overrides a commented out line rather than intended line.
|
|
inreplace etc/"suricata/suricata.yaml", %r{magic-file: /.+/magic}, "magic-file: #{libmagic.opt_share}/misc/magic"
|
|
end
|
|
|
|
test do
|
|
assert_match(/#{version}/, shell_output("#{bin}/suricata --build-info"))
|
|
end
|
|
end
|