blob: 74ad85346c04d6aa1316cee709f24071f6477cdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
require 'formula'
class SonarRunner < Formula
homepage 'http://docs.codehaus.org/display/SONAR/Installing+and+Configuring+Sonar+Runner'
url 'http://repository.codehaus.org/org/codehaus/sonar-plugins/sonar-runner/2.0/sonar-runner-2.0.zip'
sha1 '3e483322985936b3724418bb696e7b74ef020cb8'
def install
# Remove windows files
rm_rf Dir['bin/*.bat']
libexec.install Dir['*']
bin.write_exec_script libexec/'bin/sonar-runner'
end
def caveats; <<-EOS.undent
If this is your first install, you should adjust its default configuration:
#{libexec}/conf/sonar-runner.properties
after that you should also add a new enviroment variable:
SONAR_RUNNER_HOME=#{libexec}
EOS
end
def test
system "#{bin}/sonar-runner", "-h"
end
end
|