homebrew-core/Formula/findbugs.rb
Chris Rebert 5133b660cb findbugs 3.0.1
Closes Homebrew/homebrew#40204.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2015-05-30 04:20:35 +01:00

31 lines
820 B
Ruby

class Findbugs < Formula
homepage "http://findbugs.sourceforge.net/index.html"
url "https://downloads.sourceforge.net/project/findbugs/findbugs/3.0.1/findbugs-3.0.1.tar.gz"
sha1 "59a24064ca6869e483ce9a04d3c50d14a227d5e6"
conflicts_with "fb-client",
:because => "findbugs and fb-client both install a `fb` binary"
depends_on :java => "1.7+"
def install
# Remove windows files
rm_f Dir["bin/*.bat"]
prefix.install_metafiles
libexec.install Dir["*"]
bin.write_exec_script libexec/"bin/fb"
bin.write_exec_script libexec/"bin/findbugs"
end
def caveats; <<-EOS.undent
Some tools might refer findbugs by env variable.
After installation, set $FINDBUGS_HOME in your profile:
export FINDBUGS_HOME=#{libexec}
EOS
end
test do
system "#{bin}/fb"
end
end