c247d23215
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
22 lines
526 B
Ruby
22 lines
526 B
Ruby
require 'formula'
|
|
|
|
class Tomcat < Formula
|
|
url 'http://archive.apache.org/dist/tomcat/tomcat-7/v7.0.16/bin/apache-tomcat-7.0.16.tar.gz'
|
|
homepage 'http://tomcat.apache.org/'
|
|
md5 'e1ba4ab7864079c2a853562cebdd045a'
|
|
|
|
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['*']
|
|
|
|
# Symlink binaries
|
|
bin.mkpath
|
|
ln_s "#{libexec}/bin/catalina.sh", bin+"catalina"
|
|
end
|
|
end
|