homebrew-core/Formula/tomcat.rb

20 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.28/bin/apache-tomcat-7.0.28.tar.gz'
sha1 '1bf21f2121eb0dc234cd092ec1d9c92416c0e4b1'
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