homebrew-core/Formula/ngrep.rb

35 lines
1.8 KiB
Ruby

class Ngrep < Formula
desc "Network grep"
homepage "https://github.com/jpr5/ngrep"
url "https://github.com/jpr5/ngrep/archive/V1_47.tar.gz"
sha256 "dc4dbe20991cc36bac5e97e99475e2a1522fd88c59ee2e08f813432c04c5fff3"
bottle do
rebuild 1
sha256 cellar: :any_skip_relocation, arm64_big_sur: "5bc88f61eaba46026963de70f44e84f73f04b041e913051fb21f3351d16cd9e4"
sha256 cellar: :any_skip_relocation, big_sur: "6ab0d459dad3462b127af805de369dac2f099844126d70e89e531ea181d0e794"
sha256 cellar: :any_skip_relocation, catalina: "53bf6d68b15a2f07a01d828cdcd137131a45871141da411328c376ed90768265"
sha256 cellar: :any_skip_relocation, mojave: "0d1948b2fbf7c60fb6e46f15d32a51a3f7754e7372924e4e984cce98282ca281"
sha256 cellar: :any_skip_relocation, high_sierra: "390424274552105e21b3f3e926b933322a09333cee02274d2f84a5e23f4ea74d"
sha256 cellar: :any_skip_relocation, sierra: "0e915d1e3b7e7da8e58a48457de4e40359cb0f870eb45a77302d36c1b767d044"
sha256 cellar: :any_skip_relocation, el_capitan: "d057c167d3b695ff915c13fd39e3cd7b3e6e2a5b3f82bce6bb8ea4c030e8f6e7"
end
def install
sdk = MacOS.sdk_path_if_needed ? MacOS.sdk_path : ""
system "./configure", "--enable-ipv6",
"--prefix=#{prefix}",
# this line required to make configure succeed
"--with-pcap-includes=#{sdk}/usr/include/pcap",
# this line required to avoid segfaults
# see https://github.com/jpr5/ngrep/commit/e29fc29
# https://github.com/Homebrew/homebrew/issues/27171
"--disable-pcap-restart"
system "make", "install"
end
test do
assert_match version.to_s, shell_output("#{bin}/ngrep -V")
end
end