blob: 988a456e479080ed68e99e54d5cb280a4864aa1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
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
|