8c926016f3
Closes Homebrew/homebrew#19295. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
49 lines
1.3 KiB
Ruby
49 lines
1.3 KiB
Ruby
require 'formula'
|
|
|
|
class Sonar < Formula
|
|
homepage 'http://www.sonarsource.org'
|
|
url 'http://dist.sonar.codehaus.org/sonar-3.5.1.zip'
|
|
sha1 'c65a0f7f25fe51d3ec829b306efcc19ba2c90214'
|
|
|
|
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 Dir['bin/macosx-universal-32']
|
|
else
|
|
rm_rf Dir['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 => "#{HOMEBREW_PREFIX}/opt/sonar/bin/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_prefix}/bin/sonar</string>
|
|
<string>start</string>
|
|
</array>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
end
|