tomcat@7: remove with-fulldocs option

This commit is contained in:
commitay 2018-10-22 14:16:22 +10:00
parent ad7d5a2474
commit 36aaa0bced

View file

@ -9,18 +9,11 @@ class TomcatAT7 < Formula
keg_only :versioned_formula
option "with-fulldocs", "Install full documentation locally"
depends_on :java
# Keep log folders
skip_clean "libexec"
resource "fulldocs" do
url "https://www.apache.org/dyn/closer.cgi?path=/tomcat/tomcat-7/v7.0.91/bin/apache-tomcat-7.0.91-fulldocs.tar.gz"
sha256 "0eadac93d16bd7512a64a84f29e631784d3e7c23287315d1fb166bd1ff44e418"
end
def install
# Remove Windows scripts
rm_rf Dir["bin/*.bat"]
@ -29,8 +22,6 @@ class TomcatAT7 < Formula
prefix.install %w[NOTICE LICENSE RELEASE-NOTES RUNNING.txt]
libexec.install Dir["*"]
bin.install_symlink "#{libexec}/bin/catalina.sh" => "catalina"
(pkgshare/"fulldocs").install resource("fulldocs") if build.with? "fulldocs"
end
test do