homebrew-core/Formula/groovy.rb
asaph 202bc798c4 groovy 2.3.0
Closes Homebrew/homebrew#28974.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-05-05 15:25:54 -05:00

33 lines
882 B
Ruby

require 'formula'
class Groovy < Formula
homepage 'http://groovy.codehaus.org/'
url 'http://dl.bintray.com/groovy/maven/groovy-binary-2.3.0.zip'
sha1 '92c2b3c5b968d1aa249bf3a4040ba739e10eab60'
option 'invokedynamic', "Install the InvokeDynamic version of Groovy (only works with Java 1.7+)"
def install
# Don't need Windows files.
rm_f Dir["bin/*.bat"]
if build.include? 'invokedynamic'
Dir['indy/*.jar'].each 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 the environment variable GROOVY_HOME to
#{opt_libexec}
EOS
end
end