diff options
| author | Jonathan Wilkins | 2013-01-30 15:06:24 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2013-01-30 20:36:27 -0800 |
| commit | cdb76cd7d5f851530f5a0dff9e38306852c9d6fa (patch) | |
| tree | 260f20c705675bdf22da861323e52f1a41b6ab04 /Library/Formula/skipfish.rb | |
| parent | ab372621723767fcf483dddc82b71f38441e18fd (diff) | |
| download | homebrew-cdb76cd7d5f851530f5a0dff9e38306852c9d6fa.tar.bz2 | |
skipfish 2.10
Closes #17449.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/skipfish.rb')
| -rw-r--r-- | Library/Formula/skipfish.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Library/Formula/skipfish.rb b/Library/Formula/skipfish.rb index 78de2e0e5..872be4595 100644 --- a/Library/Formula/skipfish.rb +++ b/Library/Formula/skipfish.rb @@ -2,8 +2,8 @@ require 'formula' class Skipfish < Formula homepage 'http://code.google.com/p/skipfish/' - url 'http://skipfish.googlecode.com/files/skipfish-2.07b.tgz' - sha1 'eb8811137dd474adc02a657d371c4427b28f8d97' + url 'http://skipfish.googlecode.com/files/skipfish-2.10b.tgz' + sha1 '2564162a13d02f8310eef5edcbaf74ed6043be99' depends_on 'libidn' @@ -11,14 +11,14 @@ class Skipfish < Formula ENV.append "CFLAGS", "-I#{HOMEBREW_PREFIX}/include" ENV.append "LDFLAGS", "-L#{HOMEBREW_PREFIX}/lib" - chmod 0755, "config.h" # Not writeable in the tgz. Lame. - inreplace "config.h", + chmod 0755, "src/config.h" # Not writeable in the tgz. Lame. + inreplace "src/config.h", "#define ASSETS_DIR \"assets\"", "#define ASSETS_DIR \"#{libexec}/assets\"" system 'make' bin.install 'skipfish' - libexec.install %w(assets dictionaries) + libexec.install %w(assets dictionaries config signatures) end def caveats; <<-EOS.undent |
