58 lines
1.5 KiB
Ruby
58 lines
1.5 KiB
Ruby
class Tomcat < Formula
|
|
desc "Implementation of Java Servlet and JavaServer Pages"
|
|
homepage "https://tomcat.apache.org/"
|
|
url "https://www.apache.org/dyn/closer.lua?path=tomcat/tomcat-10/v10.1.4/bin/apache-tomcat-10.1.4.tar.gz"
|
|
mirror "https://archive.apache.org/dist/tomcat/tomcat-10/v10.1.4/bin/apache-tomcat-10.1.4.tar.gz"
|
|
sha256 "95e68c8663187aa62de9b3e6869b2835a61975a38b64949d7c06bd64aef7f17f"
|
|
license "Apache-2.0"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "933d55c4c86046f2eb5dddc79d83f035b9559aa8520282ad8da67a901eb94e9d"
|
|
end
|
|
|
|
depends_on "openjdk"
|
|
|
|
def install
|
|
# Remove Windows scripts
|
|
rm_rf Dir["bin/*.bat"]
|
|
|
|
# Install files
|
|
prefix.install %w[NOTICE LICENSE RELEASE-NOTES RUNNING.txt]
|
|
|
|
pkgetc.install Dir["conf/*"]
|
|
(buildpath/"conf").rmdir
|
|
libexec.install_symlink pkgetc => "conf"
|
|
|
|
libexec.install Dir["*"]
|
|
(bin/"catalina").write_env_script "#{libexec}/bin/catalina.sh", JAVA_HOME: Formula["openjdk"].opt_prefix
|
|
end
|
|
|
|
def caveats
|
|
<<~EOS
|
|
Configuration files: #{pkgetc}
|
|
EOS
|
|
end
|
|
|
|
service do
|
|
run [opt_bin/"catalina", "run"]
|
|
keep_alive true
|
|
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
|