aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cronolog.rb
blob: 5b1372b95eba4257c1c59fec9b82d5c049696e37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Cronolog <Formula
  url 'http://cronolog.org/download/cronolog-1.6.2.tar.gz'
  homepage 'http://cronolog.org/'
  md5 'a44564fd5a5b061a5691b9a837d04979'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}", "--mandir=#{man}"
    system "make install"
  end
end