fad4adc153
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
28 lines
707 B
Ruby
28 lines
707 B
Ruby
require 'formula'
|
|
|
|
class Findbugs < Formula
|
|
homepage 'http://findbugs.sourceforge.net/index.html'
|
|
url 'http://sourceforge.net/projects/findbugs/files/findbugs/2.0.2/findbugs-2.0.2.tar.gz'
|
|
sha1 '3817d96e5143f513cb2945f14f50cdb6720d1f49'
|
|
|
|
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
|
|
|
|
def test
|
|
system "#{bin}/fb"
|
|
end
|
|
end
|