homebrew-core/Formula/gcutil.rb
Andrew Ellis 37c167cc5e gcutil 1.16.1
Closes Homebrew/homebrew#30421.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-06-24 14:52:16 -05:00

16 lines
391 B
Ruby

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