34 lines
1.1 KiB
Ruby
34 lines
1.1 KiB
Ruby
require 'formula'
|
|
|
|
class Tomcat < Formula
|
|
homepage "http://tomcat.apache.org/"
|
|
url "http://www.apache.org/dyn/closer.cgi?path=tomcat/tomcat-8/v8.0.18/bin/apache-tomcat-8.0.18.tar.gz"
|
|
sha1 "4c0232cac19a0a07d840258a975deec438038712"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha1 "23a9b04f317fae7285a2e2b53a9992baf8c931e3" => :yosemite
|
|
sha1 "8577388903bd4e2295148d5f48a63fa824111dbb" => :mavericks
|
|
sha1 "0c9a206f0e69f75f0b641227747c13d2ac0fda5b" => :mountain_lion
|
|
end
|
|
|
|
option "with-fulldocs", "Install full documentation locally"
|
|
|
|
resource "fulldocs" do
|
|
url "http://www.apache.org/dyn/closer.cgi?path=/tomcat/tomcat-8/v8.0.18/bin/apache-tomcat-8.0.18-fulldocs.tar.gz"
|
|
version "8.0.18"
|
|
sha1 "162e717f450ae97b990906e6ff7734dc3bd9e083"
|
|
end
|
|
|
|
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
|