blob: 7eece16a86587efe4aa9733506a38902054e5712 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | require 'formula'
class Gcutil < Formula
  homepage 'https://developers.google.com/compute/docs/gcutil/'
  url 'https://dl.google.com/dl/cloudsdk/release/artifacts/gcutil-1.16.1.zip'
  sha1 '6399fd44f373a8ddea92526ce2165af05532d36b'
  def install
    libexec.install 'gcutil', 'lib'
    bin.install_symlink libexec/"gcutil"
  end
  test do
    system "#{bin}/gcutil", "version"
  end
end
 |