2014-03-03 16:36:19 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class TomeePlus < Formula
|
|
|
|
homepage 'http://tomee.apache.org/'
|
2014-04-29 20:40:37 +00:00
|
|
|
url 'http://www.apache.org/dyn/closer.cgi?path=tomee/tomee-1.6.0.1/apache-tomee-1.6.0.1-plus.tar.gz'
|
|
|
|
version '1.6.0.1'
|
|
|
|
sha1 'a9d47bb3eff81440586ec26613c11a2e164c6d04'
|
2014-03-03 16:36:19 +00:00
|
|
|
|
|
|
|
# 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['*']
|
2014-05-01 17:17:51 +00:00
|
|
|
bin.install_symlink "#{libexec}/bin/startup.sh" => "tomee-plus-startup"
|
2014-03-03 16:36:19 +00:00
|
|
|
end
|
|
|
|
end
|