diff options
| -rw-r--r-- | Library/Formula/ftimes.rb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Library/Formula/ftimes.rb b/Library/Formula/ftimes.rb index f8aa9a8fa..ec55e3f91 100644 --- a/Library/Formula/ftimes.rb +++ b/Library/Formula/ftimes.rb @@ -1,11 +1,11 @@ -require 'formula' +require "formula" class Ftimes < Formula - homepage 'http://ftimes.sourceforge.net/FTimes/index.shtml' - url 'https://downloads.sourceforge.net/project/ftimes/ftimes/3.10.0/ftimes-3.10.0.tgz' - sha1 '96a59d7524d6b2013d0dc42c91e3e5a420667398' + homepage "http://ftimes.sourceforge.net/FTimes/index.shtml" + url "https://downloads.sourceforge.net/project/ftimes/ftimes/3.11.0/ftimes-3.11.0.tgz" + sha1 "83ec09be7978d1a834f57bdb64c54d4a98a88536" - depends_on 'pcre' + depends_on "pcre" def install system "./configure", "--disable-debug", @@ -13,8 +13,8 @@ class Ftimes < Formula "--with-pcre=#{Formula['pcre'].opt_prefix}", "--prefix=#{prefix}" - inreplace 'doc/ftimes/Makefile' do |s| - s.change_make_var! 'INSTALL_PREFIX', man1 + inreplace "doc/ftimes/Makefile" do |s| + s.change_make_var! "INSTALL_PREFIX", man1 end system "make install" |
