homebrew-core/Formula/skipfish.rb
Ali Asad Lotia af767c7f3f Update skipfish to 1.52b
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-07-23 10:40:22 -07:00

34 lines
1,021 B
Ruby

require 'formula'
class Skipfish <Formula
url 'http://skipfish.googlecode.com/files/skipfish-1.52b.tgz'
homepage 'http://code.google.com/p/skipfish/'
md5 '5ac0a84afa132a5fc302f292c897a954'
depends_on 'libidn'
def install
ENV.append "CFLAGS", "-I#{HOMEBREW_PREFIX}/include"
ENV.append "LDFLAGS", "-L#{HOMEBREW_PREFIX}/lib"
inreplace "config.h",
"#define ASSETS_DIR \"assets\"",
"#define ASSETS_DIR \"#{libexec}/assets\""
system "make"
bin.install "skipfish"
(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 specified a dictionary for it to use.
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.
"skipfish -h" prints out usage information.
EOS
end
end