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:
parent
a8fc8f40ea
commit
fcb3e066d2
1 changed files with 13 additions and 0 deletions
13
Formula/cronolog.rb
Normal file
13
Formula/cronolog.rb
Normal 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
|
Loading…
Reference in a new issue