homebrew-core/Formula/tomcat.rb
Christian Moritz 8ac5ee07bf tomcat 7.0.35
Closes Homebrew/homebrew#17272.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-01-23 17:39:58 -06: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.35/bin/apache-tomcat-7.0.35.tar.gz'
sha1 '62a50fcd4c4144971003d3d2688129ae33cce3e6'
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