Skip to content

Instantly share code, notes, and snippets.

@gaiazov
Created November 15, 2019 06:02
Show Gist options
  • Save gaiazov/277524b7f665b345107f21278f39e926 to your computer and use it in GitHub Desktop.
Save gaiazov/277524b7f665b345107f21278f39e926 to your computer and use it in GitHub Desktop.
Groovy 2.4.5 formulae fixed for latest homebrew
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.5.zip"
sha256 "87e8e9af1f718b84c9bca5a8c42425aadb9e97d8e4ad64e0c91f7c1454cd4caa"
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
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment