homebrew-core/Formula/groovy.rb

25 lines
616 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Groovy < Formula
homepage 'http://groovy.codehaus.org/'
url 'http://dist.groovy.codehaus.org/distributions/groovy-binary-2.0.2.zip'
sha1 '024104492f110b4395d6efd40207f8726468c6b4'
def install
2012-02-12 22:07:35 +00:00
# Don't need Windows files.
# Why are icons in bin?
rm_f Dir["bin/*.bat","bin/groovy.{icns,ico}"]
prefix.install %w(LICENSE.txt NOTICE.txt)
libexec.install %w(bin conf lib embeddable)
2012-02-12 22:07:35 +00:00
bin.install_symlink Dir["#{libexec}/bin/*"]
end
def caveats
<<-EOS.undent
You should set the environment variable GROOVY_HOME to
#{libexec}
EOS
end
2011-10-17 16:41:35 +00:00
end