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/'
|
2013-10-29 00:38:44 +00:00
|
|
|
url 'http://www.apache.org/dyn/closer.cgi?path=tomcat/tomcat-7/v7.0.47/bin/apache-tomcat-7.0.47.tar.gz'
|
|
|
|
sha1 'ea54881535fccb3dfd7da122358d983297d69196'
|
2013-03-29 13:33:01 +00:00
|
|
|
|
2013-08-10 01:00:53 +00:00
|
|
|
devel do
|
2013-10-21 14:21:19 +00:00
|
|
|
url 'http://www.apache.org/dyn/closer.cgi?path=tomcat/tomcat-8/v8.0.0-RC5/bin/apache-tomcat-8.0.0-RC5.tar.gz'
|
|
|
|
sha1 '17d310f962f0ce2de3956b122f5c604d97a87565'
|
2013-08-10 01:00:53 +00:00
|
|
|
end
|
|
|
|
|
2013-03-29 13:33:01 +00:00
|
|
|
# Keep log folders
|
|
|
|
skip_clean 'libexec'
|
2010-06-20 16:31:21 +00:00
|
|
|
|
|
|
|
def install
|
2011-05-23 15:04:18 +00:00
|
|
|
# Remove Windows scripts
|
|
|
|
rm_rf Dir['bin/*.bat']
|
2010-06-20 16:31:21 +00:00
|
|
|
|
2011-05-23 15:04:18 +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
|