02fb7fef66
Closes #48054. Signed-off-by: Alexander Bayandin <a.bayandin@gmail.com>
65 lines
1.6 KiB
Ruby
65 lines
1.6 KiB
Ruby
class TomcatAT7 < Formula
|
|
desc "Implementation of Java Servlet and JavaServer Pages"
|
|
homepage "https://tomcat.apache.org/"
|
|
url "https://www.apache.org/dyn/closer.cgi?path=tomcat/tomcat-7/v7.0.99/bin/apache-tomcat-7.0.99.tar.gz"
|
|
sha256 "2485f0d74fc1ce8ffa83a6d1e52125dae9341fbb36c31f03c94fdb15625a4725"
|
|
|
|
bottle :unneeded
|
|
|
|
keg_only :versioned_formula
|
|
|
|
depends_on :java
|
|
|
|
# Keep log folders
|
|
skip_clean "libexec"
|
|
|
|
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"
|
|
end
|
|
|
|
plist_options :manual => "catalina run"
|
|
|
|
def plist; <<~EOS
|
|
<?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
|
|
ENV["CATALINA_BASE"] = testpath
|
|
cp_r Dir["#{libexec}/*"], testpath
|
|
rm Dir["#{libexec}/logs/*"]
|
|
|
|
pid = fork do
|
|
exec bin/"catalina", "start"
|
|
end
|
|
sleep 3
|
|
begin
|
|
system bin/"catalina", "stop"
|
|
ensure
|
|
Process.wait pid
|
|
end
|
|
assert_predicate testpath/"logs/catalina.out", :exist?
|
|
end
|
|
end
|