class Sonarqube < Formula desc "Manage code quality" homepage "https://www.sonarqube.org/" url "https://binaries.sonarsource.com/Distribution/sonarqube/sonarqube-8.0.zip" sha256 "cfb93b3a76bb783ddb2a0146f06892b478dcbd3463258738ca6d12bc91424162" 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 Label #{plist_name} ProgramArguments #{opt_bin}/sonar start RunAtLoad EOS end test do assert_match "SonarQube", shell_output("#{bin}/sonar status", 1) end end