2011-08-12 11:20:55 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Ftimes < Formula
|
|
|
|
homepage 'http://ftimes.sourceforge.net/FTimes/index.shtml'
|
2012-03-16 02:29:40 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/ftimes/ftimes/3.8.0/ftimes-3.8.0.tgz'
|
2011-08-12 11:20:55 +00:00
|
|
|
md5 'b4bc8a3c00b3aed9e9cc9583234ec6a7'
|
|
|
|
|
|
|
|
depends_on 'pcre'
|
|
|
|
|
|
|
|
def install
|
2012-03-16 02:29:40 +00:00
|
|
|
system "./configure", "--disable-debug",
|
|
|
|
"--disable-dependency-tracking",
|
2011-08-12 11:20:55 +00:00
|
|
|
"--prefix=#{prefix}"
|
2011-08-28 03:21:35 +00:00
|
|
|
|
|
|
|
inreplace 'doc/ftimes/Makefile' do |s|
|
|
|
|
s.change_make_var! 'INSTALL_PREFIX', man1
|
|
|
|
end
|
|
|
|
|
2011-08-12 11:20:55 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|