blob: b7fd0c27c14d5bfbba350ade5bbfa05c629ece62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  | 
require 'formula'
class TomeePlus < Formula
  homepage 'http://tomee.apache.org/'
  url 'http://www.apache.org/dyn/closer.cgi?path=tomee/tomee-1.6.0/apache-tomee-1.6.0-plus.tar.gz'
  version '1.6.0'
  sha1 'f6751c837c7dc7e60b72ea84b1f425f71d79b926'
  # 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/tomee.sh" => "tomee-plus"
  end
end
  |