homebrew-core/Formula/ftimes.rb
Jack Nagel 3dd3e677d0 ftimes: remove openssl dep
The dep on openssl is unconditional and undocumented; the ftimes docs
seem to indicate that 0.9.7f is sufficient which would make it
unnecessary even on Leopard.

Also fix a couple of style nits.

Closes Homebrew/homebrew#10953.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-03-15 21:31:52 -05:00

21 lines
555 B
Ruby

require 'formula'
class Ftimes < Formula
homepage 'http://ftimes.sourceforge.net/FTimes/index.shtml'
url 'http://downloads.sourceforge.net/project/ftimes/ftimes/3.8.0/ftimes-3.8.0.tgz'
md5 'b4bc8a3c00b3aed9e9cc9583234ec6a7'
depends_on 'pcre'
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}"
inreplace 'doc/ftimes/Makefile' do |s|
s.change_make_var! 'INSTALL_PREFIX', man1
end
system "make install"
end
end