homebrew-core/Formula/tomcat.rb
Christian Moritz 26387070d0 tomcat 7.0.41
Closes Homebrew/homebrew#20428.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-06-11 19:15:59 -07:00

20 lines
546 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.41/bin/apache-tomcat-7.0.41.tar.gz'
sha1 '87974fcc24711ea253fb43e3db450664e02e1adf'
# Keep log folders
skip_clean 'libexec'
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