homebrew-core/Formula/groovy.rb
2015-06-05 14:47:57 +01:00

34 lines
923 B
Ruby

require 'formula'
class Groovy < Formula
desc "Groovy: a Java-based scripting language"
homepage 'http://www.groovy-lang.org'
url 'https://dl.bintray.com/groovy/maven/groovy-binary-2.4.3.zip'
sha1 '47837096d0307e5e8c4f74c87a3096ddd0706eff'
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.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