homebrew-core/Formula/jetty.rb

29 lines
646 B
Ruby

require 'formula'
class Jetty < Formula
homepage 'http://www.eclipse.org/jetty/'
url 'http://download.eclipse.org/jetty/8.1.3.v20120416/dist/jetty-distribution-8.1.3.v20120416.tar.gz'
version '8.1.3'
md5 'a7eedf4616dc45fa78c07637901fa6a0'
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
end