1dbdce5ba1
A few formulae are missing trailing newlines. Let's be POSIXly correct about trailing newlines, which are part of the definition of a "line" and hence a "file". Even "diff" has it's own special handling for files without trailing newlines. Perhaps an audit check is in order. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
27 lines
605 B
Ruby
27 lines
605 B
Ruby
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
|