blob: d3c6860ccc673d10752e03a9672e04e5f06c1bcd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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
|