homebrew-core/Formula/gcutil.rb
Kevin Moore 521631c83e Fix URLs to several Google projects
Closes Homebrew/homebrew#41184.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2015-06-30 02:23:51 +01:00

17 lines
439 B
Ruby

require 'formula'
class Gcutil < Formula
desc "Manage your Google Compute Engine resources"
homepage 'https://cloud.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