e8faa0f292
Closes Homebrew/homebrew#30223. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
39 lines
1 KiB
Ruby
39 lines
1 KiB
Ruby
require 'formula'
|
|
|
|
class Groovy < Formula
|
|
homepage 'http://groovy.codehaus.org/'
|
|
url 'http://dl.bintray.com/groovy/maven/groovy-binary-2.3.3.zip'
|
|
sha1 '2791c1967c4d1f1b23b561501e8c27bcaa385e97'
|
|
|
|
option 'invokedynamic', "Install the InvokeDynamic version of Groovy (only works with Java 1.7+)"
|
|
|
|
devel do
|
|
url 'http://dl.bintray.com/groovy/maven/groovy-binary-2.4.0-beta-1.zip'
|
|
sha1 '2aab7e3d1989cc1e923b965dfb076f7030520e0d'
|
|
version '2.4.0-beta-1'
|
|
end
|
|
|
|
def install
|
|
# Don't need Windows files.
|
|
rm_f Dir["bin/*.bat"]
|
|
|
|
if build.include? 'invokedynamic'
|
|
Dir.glob("indy/*.jar") do |src_path|
|
|
dst_file = File.basename(src_path, '-indy.jar') + '.jar'
|
|
dst_path = File.join('lib', dst_file)
|
|
mv src_path, dst_path
|
|
end
|
|
end
|
|
|
|
prefix.install_metafiles
|
|
libexec.install %w(bin conf lib embeddable)
|
|
bin.install_symlink Dir["#{libexec}/bin/*"]
|
|
end
|
|
|
|
def caveats
|
|
<<-EOS.undent
|
|
You should set GROOVY_HOME:
|
|
export GROOVY_HOME=#{opt_libexec}
|
|
EOS
|
|
end
|
|
end
|