da9b0fef9e
Closes Homebrew/homebrew#16537.
17 lines
501 B
Ruby
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.34/bin/apache-tomcat-7.0.34.tar.gz'
|
|
sha1 '881569860855458ed57c967e3cb10632ad951549'
|
|
|
|
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
|