fcb3e066d2
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.
13 lines
372 B
Ruby
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
|