homebrew-core/Formula/goaccess.rb

40 lines
1 KiB
Ruby
Raw Normal View History

2014-06-23 01:24:52 +00:00
require "formula"
class Goaccess < Formula
2014-06-23 01:24:52 +00:00
homepage "http://goaccess.prosoftcorp.com/"
2014-10-03 08:10:16 +00:00
url "http://tar.goaccess.io/goaccess-0.8.5.tar.gz"
sha1 "a69e629682b11b5413af9112f386ef8bf9182346"
2012-09-03 20:32:34 +00:00
bottle do
sha1 "97e5b8257e79910a253ec972cb9535f02caec511" => :mavericks
sha1 "0a17b2ba03ec8575eb3deba610fa200aeb052b92" => :mountain_lion
sha1 "98e9188ea8aa24f8e51dd046d6003b81c894f53e" => :lion
end
2014-06-23 01:24:52 +00:00
option "enable-geoip", "Enable IP location information using GeoIP"
2012-09-03 20:32:34 +00:00
head do
url "https://github.com/allinurl/goaccess.git"
depends_on "autoconf" => :build
depends_on "automake" => :build
end
2014-06-23 01:24:52 +00:00
depends_on "pkg-config" => :build
depends_on "glib"
depends_on "geoip" if build.include? "enable-geoip"
def install
system "autoreconf", "-vfi" if build.head?
2012-09-03 20:32:34 +00:00
args = %W[
--disable-debug
--disable-dependency-tracking
--prefix=#{prefix}
]
2012-09-03 20:32:34 +00:00
args << "--enable-geoip" if build.include? "enable-geoip"
system "./configure", *args
system "make install"
end
end