homebrew-core/Formula/selenium-server-standalone.rb
Paul Kmiec 7f1e5479b6 selenium-server-standalone 2.43.0
Update to 2.43.0

Closes Homebrew/homebrew#32327.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-09-16 10:13:38 +01:00

44 lines
1.4 KiB
Ruby

require "formula"
class SeleniumServerStandalone < Formula
homepage "http://seleniumhq.org/"
url "http://selenium-release.storage.googleapis.com/2.43/selenium-server-standalone-2.43.0.jar"
sha1 "f4574198fe7c4712b1730f91238de46c631e37fe"
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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>#{plist_name}</string>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<false/>
<key>ProgramArguments</key>
<array>
<string>/usr/bin/java</string>
<string>-jar</string>
<string>#{libexec}/selenium-server-standalone-#{version}.jar</string>
<string>-port</string>
<string>4444</string>
</array>
<key>ServiceDescription</key>
<string>Selenium Server</string>
<key>StandardErrorPath</key>
<string>/var/log/selenium/selenium-error.log</string>
<key>StandardOutPath</key>
<string>/var/log/selenium/selenium-output.log</string>
</dict>
</plist>
EOS
end
end