diff options
| author | Matthew Callis | 2011-05-20 19:31:35 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2011-05-20 20:04:55 -0700 |
| commit | 6d320671426c73fd5fd2a835f71a097234290c1a (patch) | |
| tree | 40bdeeefea177f2904a34dadd86dc940a022d206 | |
| parent | 31c30794c3011ca1c07de361f088add95531c224 (diff) | |
| download | homebrew-6d320671426c73fd5fd2a835f71a097234290c1a.tar.bz2 | |
GoAccess 0.4.2
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/goaccess.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/goaccess.rb b/Library/Formula/goaccess.rb new file mode 100644 index 000000000..379ce4ed4 --- /dev/null +++ b/Library/Formula/goaccess.rb @@ -0,0 +1,17 @@ +require 'formula' + +class Goaccess < Formula + url 'http://downloads.sourceforge.net/project/goaccess/0.4.2/goaccess-0.4.2.tar.gz' + homepage 'http://goaccess.prosoftcorp.com/' + md5 '7d7707c294c949d612e451da2f003c37' + head 'git://goaccess.git.sourceforge.net/gitroot/goaccess/goaccess' + + depends_on 'geoip' + depends_on 'glib' + + def install + system "./configure", "--enable-geoip", + "--prefix=#{prefix}" + system "make install" + end +end |
