homebrew-core/Formula/jetty.rb
Pedro Pinheiro 14dea53a12 jetty: fix url.
Closes Homebrew/homebrew#36350.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-01-29 14:34:43 +00:00

24 lines
633 B
Ruby

require 'formula'
class Jetty < Formula
homepage "http://www.eclipse.org/jetty/"
url "http://eclipse.org/downloads/download.php?file=/jetty/9.2.5.v20141112/dist/jetty-distribution-9.2.5.v20141112.tar.gz"
version "9.2.5.v20141112"
sha1 "30a7a34a7ac423fb15885a63f03bffc3669e4d9a"
def install
libexec.install Dir['*']
(libexec+'logs').mkpath
bin.mkpath
Dir.glob("#{libexec}/bin/*.sh") do |f|
scriptname = File.basename(f, '.sh')
(bin+scriptname).write <<-EOS.undent
#!/bin/bash
JETTY_HOME=#{libexec}
#{f} "$@"
EOS
chmod 0755, bin+scriptname
end
end
end