homebrew-core/Formula/tomcat.rb
Brett Koonce 23fcbb3153 tomcat 7.0.29
Closes Homebrew/homebrew#13756.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-07-29 21:36:55 -07:00

19 lines
520 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.29/bin/apache-tomcat-7.0.29.tar.gz'
sha1 'f27061da957751d6feb58acb16ded680823203d4'
skip_clean :all
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