8a09823f15
Signed-off-by: Ealden Esto E. Escanan <ealden@gmail.com> Closes Homebrew/homebrew#8573. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
27 lines
606 B
Ruby
27 lines
606 B
Ruby
require 'formula'
|
|
|
|
class Groovy < Formula
|
|
homepage 'http://groovy.codehaus.org/'
|
|
url 'http://dist.groovy.codehaus.org/distributions/groovy-binary-1.8.4.zip'
|
|
md5 '3ecfe663fcdc1d9b54b16e5eabe54c90'
|
|
|
|
def install
|
|
rm_f Dir["bin/*.bat"]
|
|
|
|
prefix.install %w{ LICENSE.txt NOTICE.txt }
|
|
libexec.install %w[bin conf lib]
|
|
|
|
bin.mkpath
|
|
Dir["#{libexec}/bin/*"].each do |f|
|
|
next unless File.extname(f).empty?
|
|
ln_s f, bin+File.basename(f)
|
|
end
|
|
end
|
|
|
|
def caveats
|
|
<<-EOS.undent
|
|
You should set the environment variable GROOVY_HOME to
|
|
#{libexec}
|
|
EOS
|
|
end
|
|
end
|