homebrew-core/Formula/gcutil.rb

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