class SeleniumServerStandalone < Formula homepage "http://seleniumhq.org/" url "http://selenium-release.storage.googleapis.com/2.45/selenium-server-standalone-2.45.0.jar" sha1 "9bc872d1f364a3104257b1f8e055a342228259c3" 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 #{libexec}/selenium-server-standalone-#{version}.jar -port 4444 ServiceDescription Selenium Server StandardErrorPath #{var}/log/selenium-error.log StandardOutPath #{var}/log/selenium-output.log EOS end end