Created
February 18, 2020 03:06
-
-
Save raffecat/1e996e098761ca49844d63adbdf8194b to your computer and use it in GitHub Desktop.
brew install groovy@2 # /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/Formula/[email protected]
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class GroovyAT2 < Formula | |
desc "Java-based scripting language" | |
homepage "https://www.groovy-lang.org/" | |
url "https://dl.bintray.com/groovy/maven/apache-groovy-binary-2.5.9.zip" | |
sha256 "fea7dc321a3029c47ffa4aa165055d2bcc78bc280fac4e70ac131c717e45b89b" | |
bottle :unneeded | |
keg_only :versioned_formula | |
# Groovy 2.5 requires JDK8+ to build and JDK7 is the minimum version of the JRE that we support. | |
depends_on :java => "1.7+" | |
def install | |
# Don't need Windows files. | |
rm_f Dir["bin/*.bat"] | |
libexec.install "bin", "conf", "lib" | |
bin.install_symlink Dir["#{libexec}/bin/*"] - ["#{libexec}/bin/groovy.ico"] | |
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
Save the file to
/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/Formula/[email protected]
Then run
brew install groovy@2