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.
This commit is contained in:
David Höppner 2010-09-01 19:08:03 +02:00
parent a8fc8f40ea
commit fcb3e066d2

13
Formula/cronolog.rb Normal file
View file

@ -0,0 +1,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