77c73ecb89
Some of these were pointing at archive.apache.org. Now they aren’t, I investigated for good rationale for using the archive before altering it. mod_python still uses archive.apache.org as that is the only place it exists that I could find. jsvc *now* uses apache.archive.org as the formula was otherwise broken and the binary tarball it needs no longer exists on the main mirrors.
22 lines
537 B
Ruby
22 lines
537 B
Ruby
require 'formula'
|
|
|
|
class Tomcat < Formula
|
|
url 'http://www.apache.org/dyn/closer.cgi?path=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
|