aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gcutil.rb
blob: 900da2ec286a24a14d1dd567e0b9347b7ca499e3 (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.8.4.tar.gz'
  sha1 'cf5d094df8fa847befad98d8b3507091822a798e'

  def install
    libexec.install 'gcutil', 'lib'
    bin.install_symlink libexec/"gcutil"
  end

  def test
    system "#{bin}/gcutil", "version"
  end
end