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