homebrew-core/Formula/dependency-check.rb

43 lines
1.5 KiB
Ruby

class DependencyCheck < Formula
desc "OWASP Dependency Check"
homepage "https://www.owasp.org/index.php/OWASP_Dependency_Check"
url "https://dl.bintray.com/jeremy-long/owasp/dependency-check-3.0.0-release.zip"
sha256 "b107fffc5504bbb34bf7a91e312ec575a819b6baa77daa66b31035af843b2622"
bottle :unneeded
depends_on :java
def install
rm_f Dir["bin/*.bat"]
chmod 0755, "bin/dependency-check.sh"
libexec.install Dir["*"]
mv libexec/"bin/dependency-check.sh", libexec/"bin/dependency-check"
bin.install_symlink libexec/"bin/dependency-check"
(var/"dependencycheck").mkpath
libexec.install_symlink var/"dependencycheck" => "data"
(etc/"dependencycheck").mkpath
jar = "dependency-check-core-#{version}.jar"
corejar = libexec/"repo/org/owasp/dependency-check-core/#{version}/#{jar}"
system "unzip", "-o", corejar, "dependencycheck.properties", "-d", libexec/"etc"
(etc/"dependencycheck").install_symlink libexec/"etc/dependencycheck.properties"
end
test do
output = shell_output("#{libexec}/bin/dependency-check --version").strip
assert_match "Dependency-Check Core version #{version}", output
(testpath/"temp-props.properties").write <<-EOS.undent
cve.startyear=2017
analyzer.assembly.enabled=false
EOS
system bin/"dependency-check", "-P", "temp-props.properties", "-f", "XML",
"--project", "dc", "-s", libexec, "-d", testpath, "-o", testpath
assert_predicate testpath/"dependency-check-report.xml", :exist?
end
end