diff options
| author | Ali Asad Lotia | 2010-03-30 16:02:31 -0400 |
|---|---|---|
| committer | David Höppner | 2010-04-01 13:05:46 +0200 |
| commit | 9fdc5194e2c4629dac7687c71e57b4ae1989e1b9 (patch) | |
| tree | ad685d28885b6c519adf961432248662354be21c /Library | |
| parent | 0dfa477f2b3136574acbb19054f5f7b41fb278b7 (diff) | |
| download | homebrew-9fdc5194e2c4629dac7687c71e57b4ae1989e1b9.tar.bz2 | |
Update skipfish to version 1.27b.
Signed-off-by: David Höppner <0xffea@gmail.com>
* libexec
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/skipfish.rb | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/Library/Formula/skipfish.rb b/Library/Formula/skipfish.rb index 316f0731d..423c4c111 100644 --- a/Library/Formula/skipfish.rb +++ b/Library/Formula/skipfish.rb @@ -1,9 +1,9 @@ require 'formula' class Skipfish <Formula - url 'http://skipfish.googlecode.com/files/skipfish-1.25b.tgz' + url 'http://skipfish.googlecode.com/files/skipfish-1.27b.tgz' homepage 'http://code.google.com/p/skipfish/' - md5 '6563633524e58592081b169fdbb28d47' + md5 '118b755740dd8b4a201bb1bd9fbceecc' depends_on 'libidn' @@ -12,23 +12,23 @@ class Skipfish <Formula ENV.append "LDFLAGS", "-L#{HOMEBREW_PREFIX}/lib" inreplace "config.h", "#define ASSETS_DIR \"assets\"", - "#define ASSETS_DIR \"#{prefix}/share/skipfish/assets\"" + "#define ASSETS_DIR \"#{libexec}/assets\"" system "make" bin.install "skipfish" - (share+"skipfish/dictionaries").install Dir["dictionaries/*"] - (share+"skipfish/assets").install Dir["assets/*"] + (libexec+"dictionaries").install Dir["dictionaries/*"] + (libexec+"assets").install Dir["assets/*"] end def caveats; <<-EOS.undent - NOTE: Skipfish uses dictionary-based probes and will not run until you - have selected and made a copy of a dictionary for it to use. + NOTE: Skipfish uses dictionary-based probes and will not run until + you have specified a dictionary for it to use. - Please read consult dictionaries/README-FIRST carefully to make the right - choice. This step has a profound impact on the quality of scan results - later on. + Please read #{libexec}/dictionaries/README-FIRST + carefully to make the right choice. This step has a profound impact + on the quality of results later on. - #{HOMEBREW_PREFIX}/lib/skipfish/dictionaries/README-FIRST + "skipfish -h" prints out usage information. EOS end |
