7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
28 lines
743 B
Ruby
28 lines
743 B
Ruby
require 'formula'
|
|
|
|
class Tomcat <Formula
|
|
url 'http://www.fightrice.com/mirrors/apache/tomcat/tomcat-6/v6.0.26/bin/apache-tomcat-6.0.26.tar.gz'
|
|
homepage 'http://tomcat.apache.org/'
|
|
md5 'f9eafa9bfd620324d1270ae8f09a8c89'
|
|
|
|
skip_clean :all
|
|
|
|
def install
|
|
rm_rf Dir['bin/*.{cmd,bat]}']
|
|
libexec.install Dir['*']
|
|
(libexec+'logs').mkpath
|
|
bin.mkpath
|
|
Dir["#{libexec}/bin/*.sh"].each { |f| ln_s f, bin }
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
Note: Some of the support scripts used by Tomcat have very generic names.
|
|
These are likely to conflict with support scripts used by other Java-based
|
|
server software.
|
|
|
|
You may want to `brew unlink tomcat` and add:
|
|
#{bin}
|
|
to your PATH instead.
|
|
EOS
|
|
end
|
|
end
|