aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gradle.rb
blob: 843a8c2e260029e65623ce5f90f3b6953467d23a (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://downloads.gradle.org/distributions/gradle-2.3-bin.zip'
  sha1 'db857319150aa8f90cfcc1df7991c0ef4bcd180a'

  def install
    libexec.install %w[bin lib]
    bin.install_symlink libexec+'bin/gradle'
  end
end