c98487deae
Closes Homebrew/homebrew#24902. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
16 lines
392 B
Ruby
16 lines
392 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.12.0.zip'
|
|
sha1 'f4bafdd11a0a03d9be3f5c238af66933f811fbfe'
|
|
|
|
def install
|
|
libexec.install 'gcutil', 'lib'
|
|
bin.install_symlink libexec/"gcutil"
|
|
end
|
|
|
|
def test
|
|
system "#{bin}/gcutil", "version"
|
|
end
|
|
end
|