aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authormystix2010-02-27 00:44:49 +0800
committerAdam Vandenberg2010-02-26 09:09:41 -0800
commit0d0d7cde984aaa51cd0f939c9ecfe714a4c29323 (patch)
tree0b723181b7f92ac0d383637092733504e7e555c3 /Library/Formula
parentad297ae347405404d37b28c38c21d969a743af23 (diff)
downloadhomebrew-0d0d7cde984aaa51cd0f939c9ecfe714a4c29323.tar.bz2
Updated Groovy formula to 1.7.1
Signed-off-by: Adam Vandenberg <flangy@gmail.com> I went ahead and dropped the @s and reordered the delete to happen before install. Also, the "version" was redundant.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/groovy.rb9
1 files changed, 4 insertions, 5 deletions
diff --git a/Library/Formula/groovy.rb b/Library/Formula/groovy.rb
index c87dc4430..42e401a8c 100644
--- a/Library/Formula/groovy.rb
+++ b/Library/Formula/groovy.rb
@@ -1,13 +1,12 @@
require 'formula'
class Groovy <Formula
- @url='http://dist.groovy.codehaus.org/distributions/groovy-binary-1.7.0.zip'
- @homepage='http://groovy.codehaus.org/'
- @version='1.7.0'
- @sha256='7f08ce19c757ddf8b14f5dcf909048719c82348584aa707bbe0a65a9dd9c6afc'
+ url 'http://dist.groovy.codehaus.org/distributions/groovy-binary-1.7.1.zip'
+ md5 '65f522de612ca56e815992fffbf10d12'
+ homepage 'http://groovy.codehaus.org/'
def install
+ rm_f Dir["bin/*.bat"]
prefix.install %w[bin conf lib]
- FileUtils.rm_f Dir["#{bin}/*.bat"]
end
end