diff options
| author | asaph | 2013-11-07 00:21:33 -0800 |
|---|---|---|
| committer | Jack Nagel | 2013-11-11 22:51:29 -0600 |
| commit | 23ef4134e7ec6d829dd5a424e8820fb54aede480 (patch) | |
| tree | efdbcbd7f9f4b5d2c5802598f3b40e7430459f94 /Library/Formula | |
| parent | b1f1deb40aa1a9e22e1242ddc70f1e1c2d6ba9fa (diff) | |
| download | homebrew-23ef4134e7ec6d829dd5a424e8820fb54aede480.tar.bz2 | |
tomcat: option to download full documentation
- Added option to download and install tomcat docs locally for offline
reference. Get tomcat 8 docs if --devel is specified
Closes #24049.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/tomcat.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/tomcat.rb b/Library/Formula/tomcat.rb index 853652bb1..79a2e66aa 100644 --- a/Library/Formula/tomcat.rb +++ b/Library/Formula/tomcat.rb @@ -5,9 +5,23 @@ class Tomcat < Formula 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 @@ -21,5 +35,7 @@ class Tomcat < Formula 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 |
