blob: 66f79353ad1c1f47afd889ff572281ad1130de46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  | 
require 'formula'
class Apachetop <Formula
  url 'http://www.webta.org/apachetop/apachetop-0.12.6.tar.gz'
  homepage 'http://www.webta.org/projects/apachetop/'
  md5 '604283ac4bbbddd98fc9b1f11381657e'
  def install
    system "./configure", "--prefix=#{prefix}",
                          "--disable-debug",
                          "--disable-dependency-tracking",
                          "--with-logfile=/var/log/apache2/access_log"
    system "make install"
  end
end
  |