blob: d76c8b0ec5204bf8d42ae4ff50516aa686891ba9 (
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.14.2.zip'
sha1 'c8263333f68a7bf3468a6ed7cfe56c2390227605'
def install
libexec.install 'gcutil', 'lib'
bin.install_symlink libexec/"gcutil"
end
test do
system "#{bin}/gcutil", "version"
end
end
|