homebrew-core/Formula/sonarqube.rb

45 lines
1.1 KiB
Ruby

class Sonarqube < Formula
desc "Manage code quality"
homepage "https://www.sonarqube.org/"
url "https://sonarsource.bintray.com/Distribution/sonarqube/sonarqube-6.3.1.zip"
sha256 "f160cb4cc7e748761fe89685336d0b7f6e2d00689c3e4ecfcf567460a7106505"
bottle :unneeded
depends_on :java => "1.8+"
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.undent
<?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