aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/sonar-runner.rb27
1 files changed, 27 insertions, 0 deletions
diff --git a/Library/Formula/sonar-runner.rb b/Library/Formula/sonar-runner.rb
new file mode 100644
index 000000000..74ad85346
--- /dev/null
+++ b/Library/Formula/sonar-runner.rb
@@ -0,0 +1,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