71b126cdd4
Closes Homebrew/homebrew#38344. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
51 lines
1.3 KiB
Ruby
51 lines
1.3 KiB
Ruby
class Sonar < Formula
|
|
homepage "http://www.sonarqube.org/"
|
|
url "http://dist.sonar.codehaus.org/sonarqube-5.1.zip"
|
|
sha1 "543c7d6ccff2b62ba8195bc1df5ffd4082b61ebf"
|
|
|
|
def install
|
|
# Delete native bin directories for other systems
|
|
rm_rf Dir["bin/{aix,hpux,linux,solaris,windows}-*"]
|
|
|
|
if MacOS.prefer_64_bit?
|
|
rm_rf "bin/macosx-universal-32"
|
|
else
|
|
rm_rf "bin/macosx-universal-64"
|
|
end
|
|
|
|
# Delete Windows files
|
|
rm_f Dir["war/*.bat"]
|
|
libexec.install Dir["*"]
|
|
|
|
if MacOS.prefer_64_bit?
|
|
bin.install_symlink "#{libexec}/bin/macosx-universal-64/sonar.sh" => "sonar"
|
|
else
|
|
bin.install_symlink "#{libexec}/bin/macosx-universal-32/sonar.sh" => "sonar"
|
|
end
|
|
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
|