tomcat: add plist
Closes #12249. Signed-off-by: Alex Dunn <dunn.alex@gmail.com>
This commit is contained in:
parent
54ab200d6c
commit
5faab57f3f
1 changed files with 24 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
||||||
class Tomcat < Formula
|
class Tomcat < Formula
|
||||||
desc "Implementation of Java Servlet and JavaServer Pages"
|
desc "Implementation of Java Servlet and JavaServer Pages"
|
||||||
homepage "https://tomcat.apache.org/"
|
homepage "https://tomcat.apache.org/"
|
||||||
|
revision 1
|
||||||
|
|
||||||
stable do
|
stable do
|
||||||
url "https://www.apache.org/dyn/closer.cgi?path=tomcat/tomcat-8/v8.5.16/bin/apache-tomcat-8.5.16.tar.gz"
|
url "https://www.apache.org/dyn/closer.cgi?path=tomcat/tomcat-8/v8.5.16/bin/apache-tomcat-8.5.16.tar.gz"
|
||||||
|
@ -48,6 +49,29 @@ class Tomcat < Formula
|
||||||
(share/"fulldocs").install resource("fulldocs") if build.with? "fulldocs"
|
(share/"fulldocs").install resource("fulldocs") if build.with? "fulldocs"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
plist_options :manual => "catalina run"
|
||||||
|
|
||||||
|
def plist; <<-EOS.undent
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>Disabled</key>
|
||||||
|
<false/>
|
||||||
|
<key>Label</key>
|
||||||
|
<string>#{plist_name}</string>
|
||||||
|
<key>ProgramArguments</key>
|
||||||
|
<array>
|
||||||
|
<string>#{opt_bin}/catalina</string>
|
||||||
|
<string>run</string>
|
||||||
|
</array>
|
||||||
|
<key>KeepAlive</key>
|
||||||
|
<true/>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
|
EOS
|
||||||
|
end
|
||||||
|
|
||||||
test do
|
test do
|
||||||
ENV["CATALINA_BASE"] = testpath
|
ENV["CATALINA_BASE"] = testpath
|
||||||
cp_r Dir["#{libexec}/*"], testpath
|
cp_r Dir["#{libexec}/*"], testpath
|
||||||
|
|
Loading…
Reference in a new issue