Groovy formula

Groovy is an agile dynamic language for the Java Platform.
master
Ben Olive 2009-11-11 13:09:31 -05:00 committed by Max Howell
parent eb73bc8aa0
commit bd4e1d3a9f
1 changed files with 13 additions and 0 deletions

13
Formula/groovy.rb Normal file
View File

@ -0,0 +1,13 @@
require 'formula'
class Groovy <Formula
@url='http://dist.groovy.codehaus.org/distributions/groovy-binary-1.6.5.zip'
@homepage='http://groovy.codehaus.org/'
@version='1.6.5'
@sha256='db3d4c08ad76392ae94eba830e8c9072fda9e5774c9e7d220c90d0f91a5d7aaf'
def install
prefix.install %w[bin conf lib]
FileUtils.rm_f Dir["#{bin}/*.bat"]
end
end