c80d1b71df
Closes Homebrew/homebrew#28138. Signed-off-by: Mike McQuaid <mike@mikemcquaid.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.15.0.zip'
|
|
sha1 '3ef940bda17469e742f77f5c0918613c5377f058'
|
|
|
|
def install
|
|
libexec.install 'gcutil', 'lib'
|
|
bin.install_symlink libexec/"gcutil"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/gcutil", "version"
|
|
end
|
|
end
|