class Ngrep < Formula desc "network grep" homepage "http://ngrep.sourceforge.net/" url "https://downloads.sourceforge.net/project/ngrep/ngrep/1.45/ngrep-1.45.tar.bz2" sha256 "aea6dd337da8781847c75b3b5b876e4de9c58520e0d77310679a979fc6402fa7" revision 1 bottle do cellar :any sha1 "8d06dc84b5e22b309dbf3b2eb1c6933b45478b9c" => :mavericks sha1 "a03e65a486e3bd285ad2dd18ce8b6dc7faa04802" => :mountain_lion sha1 "03fb46935a159ef96a5905b0f8c39900113a024d" => :lion end # http://sourceforge.net/p/ngrep/bugs/27/ patch do url "https://launchpadlibrarian.net/44952147/ngrep-fix-ipv6-support.patch" sha256 "f1bcc0a344e5f454207254746cab5b1d216d3de3efaf08f59732f2182d42bbb1" end def install system "./configure", "--disable-debug", "--disable-dependency-tracking", "--enable-ipv6", "--prefix=#{prefix}", # this line required to make configure succeed "--with-pcap-includes=#{MacOS.sdk_path}/usr/include", # 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 end