require 'formula' class SonarRunner < Formula homepage 'http://docs.codehaus.org/display/SONAR/Installing+and+Configuring+Sonar+Runner' url 'http://repo1.maven.org/maven2/org/codehaus/sonar/runner/sonar-runner-dist/2.2.2/sonar-runner-dist-2.2.2.zip' sha1 'd8f21c77072d65e3c3011b9f66d8026e2dc82e45' 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