homebrew-core/Formula/tomee-webprofile.rb

34 lines
919 B
Ruby

class TomeeWebprofile < Formula
desc "All-Apache Java EE 6 Web Profile stack"
homepage "https://tomee.apache.org/"
url "https://www.apache.org/dyn/closer.cgi?path=tomee/tomee-1.7.4/apache-tomee-1.7.4-webprofile.tar.gz"
version "1.7.4"
sha256 "4a1c13e60fcf1289980b0c14f8e67daf31b1c91f4e208fbc7aeec0a252655897"
bottle :unneeded
def install
# Remove Windows scripts
rm_rf Dir["bin/*.bat"]
rm_rf Dir["bin/*.bat.original"]
rm_rf Dir["bin/*.exe"]
# Install files
prefix.install %w[NOTICE LICENSE RELEASE-NOTES RUNNING.txt]
libexec.install Dir["*"]
bin.install_symlink "#{libexec}/bin/startup.sh" => "tomee-webprofile-startup"
end
def caveats; <<-EOS.undent
The home of Apache TomEE Web is:
#{opt_libexec}
To run Apache TomEE:
#{opt_libexec}/bin/tomee-webprofile-startup
EOS
end
test do
system "#{opt_libexec}/bin/configtest.sh"
end
end