2012-12-19 10:59:03 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Gcutil < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Manage your Google Compute Engine resources"
|
2012-12-19 10:59:03 +00:00
|
|
|
homepage 'https://developers.google.com/compute/docs/gcutil/'
|
2014-06-24 19:36:40 +00:00
|
|
|
url 'https://dl.google.com/dl/cloudsdk/release/artifacts/gcutil-1.16.1.zip'
|
|
|
|
sha1 '6399fd44f373a8ddea92526ce2165af05532d36b'
|
2012-12-19 10:59:03 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
libexec.install 'gcutil', 'lib'
|
|
|
|
bin.install_symlink libexec/"gcutil"
|
|
|
|
end
|
|
|
|
|
2014-02-23 21:31:41 +00:00
|
|
|
test do
|
2012-12-19 10:59:03 +00:00
|
|
|
system "#{bin}/gcutil", "version"
|
|
|
|
end
|
|
|
|
end
|