homebrew-core/Formula/sonarqube-lts.rb

59 lines
1.8 KiB
Ruby

class SonarqubeLts < Formula
desc "Manage code quality"
homepage "https://www.sonarqube.org/"
url "https://binaries.sonarsource.com/Distribution/sonarqube/sonarqube-7.9.6.zip"
sha256 "9991d4df42c10c181005df6a4aff6b342baf9be2f3ad0e83e52a502f44d2e2d8"
license "LGPL-3.0-or-later"
# Upstream doesn't distinguish LTS releases in the URL or filename, so this
# only matches versions for the formula's current major/minor version. This
# won't identify a new LTS version with a different major/minor but updating
# the `stable` URL with the new LTS will fix the check until the next time.
livecheck do
url "https://binaries.sonarsource.com/Distribution/sonarqube/"
regex(/href=.*?sonarqube[._-]v?(#{Regexp.escape(version.major_minor)}(?:\.\d+)*)\.zip/i)
end
bottle :unneeded
depends_on "openjdk@11"
conflicts_with "sonarqube", 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/"sonar").write_env_script libexec/"bin/macosx-universal-64/sonar.sh",
Language::Java.overridable_java_home_env("11")
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