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.tar.gz" sha256 "d561a554562e447f4d7387a9878ba745e1aa8c4690cc4e9faaa779cfdaa61fbb" head "https://github.com/Ettercap/ettercap.git" bottle do sha256 "664e169c1fa33c383ae8f3b874927764d8ada4302d8e65ea8b43f6eedb8e0638" => :mojave sha256 "f93268dc6dadd2523a6146addfa5f6df9bf2603190c9e18fdcbc4e9e116793ba" => :high_sierra sha256 "6e9571eaebd4730cbfa5be6a44791c2a0b715470f0c86750879ad9ab48650306" => :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" depends_on "pcre" def install 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