homebrew-core/Formula/groovy.rb

26 lines
599 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-1.8.6.zip'
md5 'e62d2f9c2c4d528b8a0eb49cdfb389ae'
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]
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