74ade1ad04
This will prevent issues when Groovy is next updated. Closes Homebrew/homebrew#19347. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
24 lines
610 B
Ruby
24 lines
610 B
Ruby
require 'formula'
|
|
|
|
class Groovy < Formula
|
|
homepage 'http://groovy.codehaus.org/'
|
|
url 'http://dist.groovy.codehaus.org/distributions/groovy-binary-2.1.3.zip'
|
|
sha1 'fa41789263ca6c7af145a3e5f568f264b4fd7a12'
|
|
|
|
def install
|
|
# Don't need Windows files.
|
|
# Why are icons in bin?
|
|
rm_f Dir["bin/*.bat","bin/groovy.{icns,ico}"]
|
|
|
|
prefix.install_metafiles
|
|
libexec.install %w(bin conf lib embeddable)
|
|
bin.install_symlink Dir["#{libexec}/bin/*"]
|
|
end
|
|
|
|
def caveats
|
|
<<-EOS.undent
|
|
You should set the environment variable GROOVY_HOME to
|
|
#{opt_prefix}/libexec
|
|
EOS
|
|
end
|
|
end
|