homebrew-core/Formula/tomcat.rb
Christian Moritz 05a32e2c5f tomcat 7.0.37
Closes Homebrew/homebrew#17949.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-02-19 08:34:50 -08:00

17 lines
501 B
Ruby

require 'formula'
class Tomcat < Formula
homepage 'http://tomcat.apache.org/'
url 'http://www.apache.org/dyn/closer.cgi?path=tomcat/tomcat-7/v7.0.37/bin/apache-tomcat-7.0.37.tar.gz'
sha1 'c720975d6ebefa071eb94fdb27f13f53e8884811'
def install
# Remove Windows scripts
rm_rf Dir['bin/*.bat']
# Install files
prefix.install %w{ NOTICE LICENSE RELEASE-NOTES RUNNING.txt }
libexec.install Dir['*']
bin.install_symlink "#{libexec}/bin/catalina.sh" => "catalina"
end
end