homebrew-core/Formula/groovy.rb
Jerzerak b6af6c6649 groovy 2.4.6
Groovy 2.4.6

Closes Homebrew/homebrew#49417.

Signed-off-by: Tomasz Pajor <tomek@polishgeeks.com>
2016-02-22 12:12:14 +01:00

41 lines
1.1 KiB
Ruby

class Groovy < Formula
desc "Groovy: a Java-based scripting language"
homepage "http://www.groovy-lang.org"
url "https://dl.bintray.com/groovy/maven/apache-groovy-binary-2.4.6.zip"
sha256 "9b3fb5b51bc21342bba13f090a88ad6d89b20c4a7a166dd50df2ac763c278768"
bottle :unneeded
option "with-invokedynamic", "Install the InvokeDynamic version of Groovy (only works with Java 1.7+)"
deprecated_option "invokedynamic" => "with-invokedynamic"
conflicts_with "groovysdk", :because => "both install the same binaries"
def install
# Don't need Windows files.
rm_f Dir["bin/*.bat"]
if build.with? "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
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
test do
system "#{bin}/grape", "install", "org.activiti", "activiti-engine", "5.16.4"
end
end