New Formula: webalizer

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Richard Hurt 2010-07-27 20:31:50 -04:00 committed by Adam Vandenberg
parent c86a050552
commit f9187f8b17

16
Formula/webalizer.rb Normal file
View file

@ -0,0 +1,16 @@
require 'formula'
class Webalizer <Formula
url 'ftp://ftp.mrunix.net/pub/webalizer/webalizer-2.21-02-src.tar.bz2'
homepage 'http://www.mrunix.net/webalizer/'
md5 '29af2558a5564493df654b6310b152e7'
version '2.21-02'
depends_on 'libpng'
depends_on 'gd'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end