homebrew-core/Formula/jetty-runner.rb
2015-11-12 00:21:29 +00:00

16 lines
575 B
Ruby

class JettyRunner < Formula
desc "Use Jetty without an installed distribution"
homepage "https://www.eclipse.org/jetty/documentation/9.2.2.v20140723/runner.html"
url "https://search.maven.org/remotecontent?filepath=org/eclipse/jetty/jetty-runner/9.2.2.v20140723/jetty-runner-9.2.2.v20140723.jar"
version "9.2.2.v20140723"
sha256 "6b7ba03e23f65f86f946e19860da10afb326f13c74abfb84718db07280201e5c"
bottle :unneeded
def install
libexec.install Dir["*"]
bin.mkpath
bin.write_jar_script libexec/"jetty-runner-#{version}.jar", "jetty-runner"
end
end