6ac85c8518
- Added option to download and install tomcat docs locally for offline reference. Get tomcat 8 docs if --devel is specified Closes Homebrew/homebrew#24049. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
41 lines
1.3 KiB
Ruby
41 lines
1.3 KiB
Ruby
require 'formula'
|
|
|
|
class Tomcat < Formula
|
|
homepage 'http://tomcat.apache.org/'
|
|
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'
|
|
|
|
option "with-fulldocs", "Install full documentation locally"
|
|
|
|
devel do
|
|
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'
|
|
|
|
resource 'fulldocs' do
|
|
url 'http://www.apache.org/dyn/closer.cgi?path=/tomcat/tomcat-8/v8.0.0-RC5/bin/apache-tomcat-8.0.0-RC5-fulldocs.tar.gz'
|
|
version '8.0.0-RC5'
|
|
sha1 'aac41f5259a987f6f9b787d3c4d2096e30ae529a'
|
|
end
|
|
end
|
|
|
|
resource 'fulldocs' do
|
|
url 'http://www.apache.org/dyn/closer.cgi?path=/tomcat/tomcat-7/v7.0.47/bin/apache-tomcat-7.0.47-fulldocs.tar.gz'
|
|
version '7.0.47'
|
|
sha1 '31d26adb234c4b58a74ad717aaf83b39f67e8ea3'
|
|
end
|
|
|
|
# Keep log folders
|
|
skip_clean 'libexec'
|
|
|
|
def install
|
|
# Remove Windows scripts
|
|
rm_rf Dir['bin/*.bat']
|
|
|
|
# Install files
|
|
prefix.install %w{ NOTICE LICENSE RELEASE-NOTES RUNNING.txt }
|
|
libexec.install Dir['*']
|
|
bin.install_symlink "#{libexec}/bin/catalina.sh" => "catalina"
|
|
|
|
(share/'fulldocs').install resource('fulldocs') if build.with? 'fulldocs'
|
|
end
|
|
end
|