2011-04-08 19:37:11 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Jetty < Formula
|
2011-11-12 13:25:50 +00:00
|
|
|
homepage 'http://www.eclipse.org/jetty/'
|
2012-06-20 22:37:27 +00:00
|
|
|
url 'http://download.eclipse.org/jetty/8.1.4.v20120524/dist/jetty-distribution-8.1.4.v20120524.tar.gz'
|
|
|
|
version '8.1.4'
|
|
|
|
sha1 '7943e7d7fa0b460f034fde6d32487c9b33b9f829'
|
2011-04-08 19:37:11 +00:00
|
|
|
|
|
|
|
skip_clean :all
|
|
|
|
|
|
|
|
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
|
2011-09-12 19:55:17 +00:00
|
|
|
end
|