Commit d2398c1b authored by lyxell's avatar lyxell Committed by GitHub

Merge pull request #465 from uberhacker/feature/add-goacess-package

Add goaccess package
parents 6c15fb35 45421ba5
require 'package'
class Goaccess < Package
version '1.1.1'
source_url 'http://tar.goaccess.io/goaccess-1.1.1.tar.gz'
source_sha1 '8f79d90ea3e423f85aadf45528340a6547ab83f0'
depends_on 'openssl'
depends_on 'geoip'
depends_on 'ncurses'
def self.build
system './configure \
--enable-geoip \
--enable-utf8 \
--with-getline \
--with-openssl'
system 'make'
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment