homebrew-core/Formula/groovy.rb

25 lines
599 B
Ruby

require 'formula'
class Groovy < Formula
homepage 'http://groovy.codehaus.org/'
url 'http://dist.groovy.codehaus.org/distributions/groovy-binary-2.0.5.zip'
sha1 '856839a1cc2517e8879dfa9c9399b22098965009'
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
#{libexec}
EOS
end
end