class SeleniumServerStandalone < Formula desc "Browser automation for testing purposes" homepage "http://seleniumhq.org/" url "https://selenium-release.storage.googleapis.com/2.53/selenium-server-standalone-2.53.0.jar" sha256 "67b88cbfd3b130de6ff3770948f56cc485fd1abb5b7a769397d9050a59b1e036" bottle :unneeded 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