aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/goaccess.rb
blob: b82ad5a966a2ac89a8b700e9b5775401f5b72bc7 (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.1.tar.gz"
  sha1 "f9e7f277e46af3c97d0f133d7a44031db0c3e531"

  bottle do
    sha1 "fa8fb53207de715e9b5898b47d8f0ab536ce3b6d" => :mavericks
    sha1 "54bb6d73d9e97b678ac8aa9efef411189689054b" => :mountain_lion
    sha1 "53b5930276abb6f3f2d4bf1bf9f79742dad0cd3d" => :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