class Ntopng < Formula desc "Next generation version of the original ntop" homepage "http://www.ntop.org/products/ntop/" url "https://downloads.sourceforge.net/project/ntop/ntopng/ntopng-2.2.tar.gz" sha256 "4fccfc9e9f333addcd3c957b4520c471117bc2df5655d6eabf328c7385fb255e" revision 1 bottle do sha256 "21c5efd12b1c2871d076bed943c23a337fa626503d793c570894da8c9a85a464" => :el_capitan sha256 "6928cd197c059e95f481edb212dced7236cbc803dfef3c4284eed10191904b57" => :yosemite sha256 "168c94b9f301f7103bc5e9493b62a158e314690960eb854e9b7305083f705406" => :mavericks end head do url "https://github.com/ntop/ntopng.git", :branch => "dev" resource "nDPI" do url "https://github.com/ntop/nDPI.git", :branch => "dev" end end option "with-mariadb", "Build with mariadb support" depends_on "autoconf" => :build depends_on "automake" => :build depends_on "pkg-config" => :build depends_on "libtool" => :build depends_on "json-glib" => :build depends_on "wget" => :build depends_on "zeromq" => :build depends_on "gnutls" => :build depends_on "json-c" depends_on "rrdtool" depends_on "luajit" depends_on "geoip" depends_on "redis" depends_on "mysql" if build.without? "mariadb" depends_on "mariadb" => :optional def install if build.head? resource("nDPI").stage do system "./autogen.sh" system "make" (buildpath/"nDPI").install Dir["*"] end end system "./autogen.sh" system "./configure", "--prefix=#{prefix}" system "make" system "make", "install" end test do system "#{bin}/ntopng", "-h" end end