52 lines
1.6 KiB
Ruby
52 lines
1.6 KiB
Ruby
class Ettercap < Formula
|
|
desc "Multipurpose sniffer/interceptor/logger for switched LAN"
|
|
homepage "https://ettercap.github.io/ettercap/"
|
|
url "https://github.com/Ettercap/ettercap/archive/v0.8.3.1.tar.gz"
|
|
sha256 "d0c3ef88dfc284b61d3d5b64d946c1160fd04276b448519c1ae4438a9cdffaf3"
|
|
license "GPL-2.0-or-later"
|
|
head "https://github.com/Ettercap/ettercap.git"
|
|
|
|
bottle do
|
|
rebuild 1
|
|
sha256 "e52f75a8579926652f5c53ef77db1eeab39f0ff388ad77fbbe70a17a52554c2b" => :catalina
|
|
sha256 "c49b5293922b69715b05c1bc1374cec3cfe72a63750ab0fb08d559683d253afc" => :mojave
|
|
sha256 "3ab1aa27eef60cb9099bdd95ca330c0fd63dad10c169c968672bb44d97ae32e1" => :high_sierra
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "geoip"
|
|
depends_on "gtk+3"
|
|
depends_on "libnet"
|
|
depends_on "ncurses" if DevelopmentTools.clang_build_version >= 1000
|
|
depends_on "openssl@1.1"
|
|
depends_on "pcre"
|
|
|
|
def install
|
|
# Work around a CMake bug affecting harfbuzz headers and pango
|
|
# https://gitlab.kitware.com/cmake/cmake/issues/19531
|
|
ENV.append_to_cflags "-I#{Formula["harfbuzz"].opt_include}/harfbuzz"
|
|
|
|
args = std_cmake_args + %W[
|
|
-DBUNDLED_LIBS=OFF
|
|
-DENABLE_CURSES=ON
|
|
-DENABLE_GTK=ON
|
|
-DENABLE_IPV6=ON
|
|
-DENABLE_LUA=OFF
|
|
-DENABLE_PDF_DOCS=OFF
|
|
-DENABLE_PLUGINS=ON
|
|
-DGTK_BUILD_TYPE=GTK3
|
|
-DINSTALL_DESKTOP=ON
|
|
-DINSTALL_SYSCONFDIR=#{etc}
|
|
]
|
|
|
|
mkdir "build" do
|
|
system "cmake", "..", *args
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|
|
test do
|
|
assert_match version.to_s, shell_output("#{bin}/ettercap --version")
|
|
end
|
|
end
|