homebrew-core/Formula/tomcat.rb

20 lines
511 B
Ruby
Raw Normal View History

2010-06-20 16:31:21 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Tomcat < Formula
2010-06-20 16:31:21 +00:00
homepage 'http://tomcat.apache.org/'
url 'http://www.apache.org/dyn/closer.cgi?path=tomcat/tomcat-7/v7.0.26/bin/apache-tomcat-7.0.26.tar.gz'
md5 '00d310f2f4e15821951e9d206af45c6b'
2010-06-20 16:31:21 +00:00
skip_clean :all
2010-06-20 16:31:21 +00:00
def install
# Remove Windows scripts
rm_rf Dir['bin/*.bat']
2010-06-20 16:31:21 +00:00
# Install files
prefix.install %w{ NOTICE LICENSE RELEASE-NOTES RUNNING.txt }
libexec.install Dir['*']
2012-02-12 23:31:53 +00:00
bin.install_symlink "#{libexec}/bin/catalina.sh" => "catalina"
2010-06-20 16:31:21 +00:00
end
end