22 lines
558 B
Ruby
22 lines
558 B
Ruby
|
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
|