aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/jetty.rb
blob: 169b9a356edf4daf030e17b1e204eba21035d62f (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
require 'formula'

class Jetty < Formula
  homepage 'http://www.eclipse.org/jetty/'
  url 'http://eclipse.org/downloads/download.php?file=/jetty/9.1.5.v20140505/dist/jetty-distribution-9.1.5.v20140505.tar.gz&r=1'
  version '9.1.5'
  sha1 '80ea2066dab35405f97d76299714f8e6e584cb21'

  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