homebrew-core/Formula/dependency-check.rb
2018-08-06 05:51:15 -07:00

42 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.3.1-release.zip"
sha256 "0e895d2667643b08f59935aef7c1e53ec59577a68c3ecfa110d7d5bdcc6fa362"
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
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