2010-06-20 16:31:21 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Tomcat < Formula
|
2011-08-12 15:59:31 +00:00
|
|
|
url 'http://www.apache.org/dyn/closer.cgi?path=tomcat/tomcat-7/v7.0.20/bin/apache-tomcat-7.0.20.tar.gz'
|
2010-06-20 16:31:21 +00:00
|
|
|
homepage 'http://tomcat.apache.org/'
|
2011-08-12 15:59:31 +00:00
|
|
|
md5 'e6a8b71d334d28a471682ee02fd08b91'
|
2010-06-20 16:31:21 +00:00
|
|
|
|
2010-04-07 05:58:35 +00:00
|
|
|
skip_clean :all
|
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['*']
|
2010-06-20 16:31:21 +00:00
|
|
|
|
2011-05-23 15:04:18 +00:00
|
|
|
# Symlink binaries
|
|
|
|
bin.mkpath
|
|
|
|
ln_s "#{libexec}/bin/catalina.sh", bin+"catalina"
|
2010-06-20 16:31:21 +00:00
|
|
|
end
|
|
|
|
end
|