3040d24c4c
Update gradle.rb Closes Homebrew/homebrew#32155. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
12 lines
300 B
Ruby
12 lines
300 B
Ruby
require 'formula'
|
|
|
|
class Gradle < Formula
|
|
homepage 'http://www.gradle.org/'
|
|
url 'https://downloads.gradle.org/distributions/gradle-2.1-bin.zip'
|
|
sha1 'b8fa88f4053452b0b09f159b8668ce08e4dc5fa8'
|
|
|
|
def install
|
|
libexec.install %w[bin lib]
|
|
bin.install_symlink libexec+'bin/gradle'
|
|
end
|
|
end
|