2010-09-01 17:08:03 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Cronolog < Formula
|
2010-09-01 17:08:03 +00:00
|
|
|
homepage 'http://cronolog.org/'
|
2013-01-27 21:49:00 +00:00
|
|
|
url 'http://cronolog.org/download/cronolog-1.6.2.tar.gz'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '6422b7c5e87241eb31d76809a2e0eea77ae4c64e'
|
2010-09-01 17:08:03 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
2013-01-27 21:49:00 +00:00
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--mandir=#{man}"
|
2010-09-01 17:08:03 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|