blob: e789d8b51584a37c345a97b807fc69a8c4d8e09e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Gradle < Formula
homepage 'http://www.gradle.org/'
url 'https://services.gradle.org/distributions/gradle-1.12-bin.zip'
sha1 '4fee5af4ce5c1214bdbd5e14ef6adda9929f589f'
def install
libexec.install %w[bin lib]
bin.install_symlink libexec+'bin/gradle'
end
end
|