2009-11-11 18:09:31 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Groovy < Formula
|
2010-02-26 16:44:49 +00:00
|
|
|
homepage 'http://groovy.codehaus.org/'
|
2012-07-26 16:49:23 +00:00
|
|
|
url 'http://dist.groovy.codehaus.org/distributions/groovy-binary-2.0.1.zip'
|
|
|
|
sha1 '8368651e4c96e2ab272d2a0623861c817d947316'
|
2012-06-07 11:04:07 +00:00
|
|
|
|
2009-11-11 18:09:31 +00:00
|
|
|
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}"]
|
2010-09-29 20:56:20 +00:00
|
|
|
|
2012-06-07 11:04:07 +00:00
|
|
|
prefix.install %w(LICENSE.txt NOTICE.txt)
|
|
|
|
libexec.install %w(bin conf lib embeddable)
|
|
|
|
lib.install "indy" if ARGV.build_devel?
|
2012-02-12 22:07:35 +00:00
|
|
|
bin.install_symlink Dir["#{libexec}/bin/*"]
|
2009-11-11 18:09:31 +00:00
|
|
|
end
|
2011-04-27 20:18:01 +00:00
|
|
|
|
|
|
|
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
|