homebrew-core/Formula/tomcat.rb
Christian Moritz f6b25e6bcd tomcat devel 8.0.0-RC3
Closes Homebrew/homebrew#22845.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-09-26 21:19:40 -07:00

25 lines
730 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.42/bin/apache-tomcat-7.0.42.tar.gz'
sha1 '001a64629a93103d4f53ac95faf3e52a63657b95'
devel do
url 'http://www.apache.org/dyn/closer.cgi?path=tomcat/tomcat-8/v8.0.0-RC3/bin/apache-tomcat-8.0.0-RC3.tar.gz'
sha1 'a6a7df2358851c50bcfe1e5ddf0f42a13de2756a'
end
# 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