0cff5284fb
Closes Homebrew/homebrew#24460. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
39 lines
1.1 KiB
Ruby
39 lines
1.1 KiB
Ruby
require 'formula'
|
|
|
|
class Groovy < Formula
|
|
homepage 'http://groovy.codehaus.org/'
|
|
url 'http://dist.groovy.codehaus.org/distributions/groovy-binary-2.2.0.zip'
|
|
sha1 'e4c80b14fd21b168c1682b26f117e6427f9e712f'
|
|
|
|
devel do
|
|
url 'http://dist.groovy.codehaus.org/distributions/groovy-binary-2.2.0-rc-3.zip'
|
|
sha1 '4db741568aa6ab1ba333f40f4e25aa63653faa76'
|
|
version '2.2.0-rc3'
|
|
end
|
|
|
|
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_prefix}/libexec
|
|
EOS
|
|
end
|
|
end
|