homebrew-core/Formula/gcutil.rb
Nat Welch 79bc0fbf52 gcutil 1.13.0
Closes Homebrew/homebrew#25668.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-01-06 10:05:35 +00:00

16 lines
392 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.13.0.zip'
sha1 'c7a5cf7f5e0aa5e1eff20147532a320a8684ae45'
def install
libexec.install 'gcutil', 'lib'
bin.install_symlink libexec/"gcutil"
end
def test
system "#{bin}/gcutil", "version"
end
end