37c167cc5e
Closes Homebrew/homebrew#30421. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
16 lines
391 B
Ruby
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
|