blob: 7a8f3b6c58735bc11786b74d44a5ff8f091a16dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
require 'formula'
class Groovy < Formula
homepage 'http://groovy.codehaus.org/'
url 'http://dist.groovy.codehaus.org/distributions/groovy-binary-1.8.2.zip'
sha1 'd195d9fcf6b80cb5e371e5dbd790b9cc56965e45'
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
|