homebrew-core/Formula/spotbugs.rb

53 lines
1.6 KiB
Ruby

class Spotbugs < Formula
desc "Tool for Java static analysis (FindBugs's successor)"
homepage "https://spotbugs.github.io/"
url "https://repo.maven.apache.org/maven2/com/github/spotbugs/spotbugs/4.7.2/spotbugs-4.7.2.tgz"
sha256 "f02a023d03b0fde70038ccb4bc8d4a964a504262d13024a97b14d9070f7d4d96"
license "LGPL-2.1-or-later"
bottle do
sha256 cellar: :any_skip_relocation, all: "cbe989816f6a39c71910102f5dba1879d06273df7e11022524653dd0effc14b7"
end
head do
url "https://github.com/spotbugs/spotbugs.git"
depends_on "gradle" => :build
end
depends_on "openjdk"
conflicts_with "fb-client", because: "both install a `fb` binary"
def install
ENV["JAVA_HOME"] = Formula["openjdk"].opt_prefix
if build.head?
system "gradle", "build"
system "gradle", "installDist"
libexec.install Dir["spotbugs/build/install/spotbugs/*"]
else
libexec.install Dir["*"]
chmod 0755, "#{libexec}/bin/spotbugs"
end
(bin/"spotbugs").write_env_script "#{libexec}/bin/spotbugs", Language::Java.overridable_java_home_env
end
test do
(testpath/"HelloWorld.java").write <<~EOS
public class HelloWorld {
private double[] myList;
public static void main(String[] args) {
System.out.println("Hello World");
}
public double[] getList() {
return myList;
}
}
EOS
system Formula["openjdk"].bin/"javac", "HelloWorld.java"
system Formula["openjdk"].bin/"jar", "cvfe", "HelloWorld.jar", "HelloWorld", "HelloWorld.class"
output = shell_output("#{bin}/spotbugs -textui HelloWorld.jar")
assert_match(/M V EI.*\nM C UwF.*\n/, output)
end
end