require 'formula' class SeleniumServerStandalone < Formula homepage 'http://seleniumhq.org/' url 'https://selenium.googlecode.com/files/selenium-server-standalone-2.39.0.jar' sha1 'f2391600481dd285002d04b66916fc4286ff70ce' def install libexec.install "selenium-server-standalone-#{version}.jar" bin.write_jar_script libexec/"selenium-server-standalone-#{version}.jar", "selenium-server" end plist_options :manual => "selenium-server -p 4444" def plist; <<-EOS.undent Label #{plist_name} RunAtLoad KeepAlive ProgramArguments /usr/bin/java -jar #{prefix}/selenium-server-standalone-#{version}.jar -port 4444 ServiceDescription Selenium Server StandardErrorPath /var/log/selenium/selenium-error.log StandardOutPath /var/log/selenium/selenium-output.log EOS end end