homebrew-core/Formula/cronolog.rb
David Höppner fcb3e066d2 New formula cronolog
cronolog is a simple filter program that reads log file entries from
standard input and writes each entry to the output file specified by
a filename template and the current date and time.
2010-09-01 19:08:03 +02:00

13 lines
372 B
Ruby

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