2011-03-10 05:11:03 +00:00
|
|
|
class Groovy < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Groovy: a Java-based scripting language"
|
2015-07-18 21:00:36 +00:00
|
|
|
homepage "http://www.groovy-lang.org"
|
|
|
|
url "https://dl.bintray.com/groovy/maven/apache-groovy-binary-2.4.4.zip"
|
|
|
|
sha256 "a7cc1e5315a14ea38db1b2b9ce0792e35174161141a6a3e2ef49b7b2788c258c"
|
|
|
|
|
|
|
|
option "with-invokedynamic", "Install the InvokeDynamic version of Groovy (only works with Java 1.7+)"
|
2013-11-12 18:04:42 +00:00
|
|
|
|
2015-07-18 21:00:36 +00:00
|
|
|
deprecated_option "invokedynamic" => "with-invokedynamic"
|
2013-04-22 01:46:22 +00:00
|
|
|
|
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
|
|
|
|
2015-07-18 21:00:36 +00:00
|
|
|
if build.with? "invokedynamic"
|
2014-05-31 15:00:24 +00:00
|
|
|
Dir.glob("indy/*.jar") do |src_path|
|
2015-07-18 21:00:36 +00:00
|
|
|
dst_file = File.basename(src_path, "-indy.jar") + ".jar"
|
|
|
|
dst_path = File.join("lib", dst_file)
|
2013-04-22 01:46:22 +00:00
|
|
|
mv src_path, dst_path
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-07-18 21:00:36 +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
|
2014-05-06 22:40:00 +00:00
|
|
|
You should set GROOVY_HOME:
|
|
|
|
export GROOVY_HOME=#{opt_libexec}
|
2011-04-27 20:18:01 +00:00
|
|
|
EOS
|
|
|
|
end
|
2011-10-17 16:41:35 +00:00
|
|
|
end
|