aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/jetty.rb
blob: a2fb5f62b5c1308c51c34242251d2bf52b603a23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
require 'formula'

class Jetty < Formula
  url 'http://dist.codehaus.org/jetty/jetty-6.1.26/jetty-6.1.26.zip'
  homepage 'http://jetty.codehaus.org/jetty/index.html'
  md5 '0d9b2ae3feb2b207057358142658a11f'

  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