goaccess: Add support for on-disk storage.

Closes #12358.

Signed-off-by: Alex Dunn <dunn.alex@gmail.com>
This commit is contained in:
David E. Smith 2017-04-13 10:46:24 -05:00 committed by Alex Dunn
parent fb4429fa4b
commit 776ef28c50

View file

@ -18,6 +18,7 @@ class Goaccess < Formula
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "geoip" => :optional
depends_on "tokyo-cabinet"
def install
system "autoreconf", "-vfi"
@ -27,6 +28,7 @@ class Goaccess < Formula
--disable-dependency-tracking
--prefix=#{prefix}
--enable-utf8
--enable-tcb=btree
]
args << "--enable-geoip" if build.with? "geoip"