diff options
| author | Brett Koonce | 2014-08-17 09:32:01 -0700 | 
|---|---|---|
| committer | Brett Koonce | 2014-08-17 10:34:43 -0700 | 
| commit | 47cdcea150ab68cc2585af04ba637da11e0073e8 (patch) | |
| tree | 74f462641fc95d03084445bde8199093e742914f /Library/Formula/ftimes.rb | |
| parent | db5c591eade519e2fdd3117137c1f916fd216163 (diff) | |
| download | homebrew-47cdcea150ab68cc2585af04ba637da11e0073e8.tar.bz2 | |
ftimes 3.11.0
Diffstat (limited to 'Library/Formula/ftimes.rb')
| -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"  | 
