2009-11-11 18:09:31 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Groovy < Formula
|
2010-02-26 16:44:49 +00:00
|
|
|
homepage 'http://groovy.codehaus.org/'
|
2013-11-18 22:33:36 +00:00
|
|
|
url 'http://dist.groovy.codehaus.org/distributions/groovy-binary-2.2.0.zip'
|
|
|
|
sha1 'e4c80b14fd21b168c1682b26f117e6427f9e712f'
|
2012-06-07 11:04:07 +00:00
|
|
|
|
2013-11-12 18:04:42 +00:00
|
|
|
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
|
|
|
|
|
2013-04-22 01:46:22 +00:00
|
|
|
option 'invokedynamic', "Install the InvokeDynamic version of Groovy (only works with Java 1.7+)"
|
|
|
|
|
2009-11-11 18:09:31 +00:00
|
|
|
def install
|
2012-02-12 22:07:35 +00:00
|
|
|
# Don't need Windows files.
|
2013-06-08 12:07:27 +00:00
|
|
|
rm_f Dir["bin/*.bat"]
|
2010-09-29 20:56:20 +00:00
|
|
|
|
2013-04-22 01:46:22 +00:00
|
|
|
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
|
|
|
|
|
2012-11-11 19:20:09 +00:00
|
|
|
prefix.install_metafiles
|
2012-06-07 11:04:07 +00:00
|
|
|
libexec.install %w(bin conf lib embeddable)
|
2013-07-22 08:58:18 +00:00
|
|
|
bin.install_symlink Dir["#{libexec}/bin/*"]
|
2009-11-11 18:09:31 +00:00
|
|
|
end
|
2011-04-27 20:18:01 +00:00
|
|
|
|
|
|
|
def caveats
|
|
|
|
<<-EOS.undent
|
|
|
|
You should set the environment variable GROOVY_HOME to
|
2013-04-22 01:13:33 +00:00
|
|
|
#{opt_prefix}/libexec
|
2011-04-27 20:18:01 +00:00
|
|
|
EOS
|
|
|
|
end
|
2011-10-17 16:41:35 +00:00
|
|
|
end
|