46 lines
1.2 KiB
Ruby
46 lines
1.2 KiB
Ruby
class Sonarqube < Formula
|
|
desc "Manage code quality"
|
|
homepage "https://www.sonarqube.org/"
|
|
url "https://binaries.sonarsource.com/Distribution/sonarqube/sonarqube-8.1.0.31237.zip"
|
|
sha256 "d955449cb4fdf0f0f09d2fe0e9ed8d5cb32048ead11d6272931ab36ac9a9c1c0"
|
|
|
|
bottle :unneeded
|
|
|
|
depends_on :java => "11+"
|
|
|
|
conflicts_with "sonarqube-lts", :because => "both install the same binaries"
|
|
|
|
def install
|
|
# Delete native bin directories for other systems
|
|
rm_rf Dir["bin/{linux,windows}-*"]
|
|
|
|
libexec.install Dir["*"]
|
|
|
|
bin.install_symlink "#{libexec}/bin/macosx-universal-64/sonar.sh" => "sonar"
|
|
end
|
|
|
|
plist_options :manual => "sonar console"
|
|
|
|
def plist; <<~EOS
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>Label</key>
|
|
<string>#{plist_name}</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>#{opt_bin}/sonar</string>
|
|
<string>start</string>
|
|
</array>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
assert_match "SonarQube", shell_output("#{bin}/sonar status", 1)
|
|
end
|
|
end
|