95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
22 lines
682 B
Ruby
22 lines
682 B
Ruby
class Groovysdk < Formula
|
|
desc "SDK for Groovy: a Java-based scripting language"
|
|
homepage "http://www.groovy-lang.org"
|
|
url "https://dl.bintray.com/groovy/maven/apache-groovy-sdk-2.4.4.zip"
|
|
sha256 "2e794749f38386c81101c05e83b2ddd2bc3675d1cb01101f3ee2be6cf67b2fc9"
|
|
|
|
def install
|
|
ENV["GROOVY_HOME"] = libexec
|
|
|
|
# We don't need Windows' files.
|
|
rm_f Dir["bin/*.bat"]
|
|
|
|
prefix.install_metafiles
|
|
bin.install Dir["bin/*"]
|
|
libexec.install %w[conf lib embeddable src doc]
|
|
bin.env_script_all_files(libexec+"bin", :GROOVY_HOME => ENV["GROOVY_HOME"])
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/grape", "install", "org.activiti", "activiti-engine", "5.16.4"
|
|
end
|
|
end
|