62e49c6450
Closes Homebrew/homebrew#14953. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
26 lines
636 B
Ruby
26 lines
636 B
Ruby
require 'formula'
|
|
|
|
class Jetty < Formula
|
|
homepage 'http://www.eclipse.org/jetty/'
|
|
url 'http://download.eclipse.org/jetty/8.1.7.v20120910/dist/jetty-distribution-8.1.7.v20120910.tar.gz'
|
|
version '8.1.7'
|
|
sha1 'f0ff5a85d494fea6bfac2aba956ddf0f2fafb129'
|
|
|
|
def install
|
|
rm_rf Dir['bin/*.{cmd,bat]}']
|
|
|
|
libexec.install Dir['*']
|
|
(libexec+'logs').mkpath
|
|
|
|
bin.mkpath
|
|
Dir["#{libexec}/bin/*.sh"].each 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
|