blob: 298fe9ad445fa5dc33dec61d7dc86936c3bc0c1a (
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://google-compute-engine-tools.googlecode.com/files/gcutil-1.7.1.tar.gz'
  sha1 'af8982053b1e4836f84b9826aabcdcf933d37dba'
  def install
    libexec.install 'gcutil', 'lib'
    bin.install_symlink libexec/"gcutil"
  end
  def test
    system "#{bin}/gcutil", "version"
  end
end
  |