7799d2a43e
This reverts commit 4b1230ccc0e0ed70cc79449106e76cf5ebcc3933, for the same reason as the previous revert, committed in 00d8a81. milestone-4 has regressions, and was withdrawn, see the offical announcement here: http://wiki.gradle.org/display/GRADLE/2011/08/18/Gradle+1.0-milestone-4+withdrawn Closes Homebrew/homebrew#7924. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
15 lines
365 B
Ruby
15 lines
365 B
Ruby
require 'formula'
|
|
|
|
class Gradle < Formula
|
|
homepage 'http://www.gradle.org/'
|
|
version '1.0-milestone-3'
|
|
url 'http://repo.gradle.org/gradle/distributions/gradle-1.0-milestone-3-all.zip'
|
|
md5 'e3e01c894da324654da044089e6842ea'
|
|
|
|
def install
|
|
rm_f Dir["bin/*.bat"]
|
|
libexec.install %w[bin lib]
|
|
bin.mkpath
|
|
ln_s libexec+('bin/gradle'), bin
|
|
end
|
|
end
|