blob: d16c4128f9e8796132b3ad5e3ed0d4c45b8866cb (
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+SonarQube+Runner'
url 'http://repo1.maven.org/maven2/org/codehaus/sonar/runner/sonar-runner-dist/2.3/sonar-runner-dist-2.3.zip'
sha1 '802312f74f55d671f6ae08f21e965fd66ca1853e'
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
test do
system "#{bin}/sonar-runner", "-h"
end
end
|