aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/goaccess.rb
blob: 53fd57b2672199c5b30d83302cc3ede8cc805fd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
require "formula"

class Goaccess < Formula
  homepage "http://goaccess.prosoftcorp.com/"
  url "http://tar.goaccess.io/goaccess-0.8.3.tar.gz"
  sha1 "e5ed8a3d6ba2c5b338b5e3e22da8024e7c58ded3"

  bottle do
    sha1 "9c5adcd9d96d92881c2aedecf13e1d42a4d829af" => :mavericks
    sha1 "380c3c8298fb6c9e77297c708360d0abfc097650" => :mountain_lion
    sha1 "0e9a7dfd63e7565fddd54a6b7fff13f1e8a81c46" => :lion
  end

  option "enable-geoip", "Enable IP location information using GeoIP"

  head do
    url "https://github.com/allinurl/goaccess.git"
    depends_on "autoconf" => :build
    depends_on "automake" => :build
  end

  depends_on "pkg-config" => :build
  depends_on "glib"
  depends_on "geoip" if build.include? "enable-geoip"

  def install
    system "autoreconf", "-vfi" if build.head?
    args = %W[
      --disable-debug
      --disable-dependency-tracking
      --prefix=#{prefix}
    ]

    args << "--enable-geoip" if build.include? "enable-geoip"

    system "./configure", *args
    system "make install"
  end
end