blob: fb5a02c07ca355a4102642f8991d06223f6accec (
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
 | require "formula"
class TomeePlume < Formula
  homepage "http://tomee.apache.org/"
  url "http://www.apache.org/dyn/closer.cgi?path=tomee/tomee-1.7.1/apache-tomee-1.7.1-plume.tar.gz"
  version "1.7.1"
  sha1 "b27386dd16df4cc936283dd3739012a5eed3224a"
  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/startup.sh" => "tomee-plume-startup"
  end
  def caveats; <<-EOS.undent
    The home of Apache TomEE Plume is:
      #{opt_libexec}
    To run Apache TomEE:
      #{opt_libexec}/bin/tomee-plume-startup
    EOS
  end
  test do
    system "#{opt_libexec}/bin/configtest.sh"
  end
end
 |