aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/boot2docker.rb
blob: 96f6bba810788ee6f522f10145faf01d11623fef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require "formula"

class Boot2docker < Formula
  homepage "https://github.com/steeve/boot2docker"
  url "https://github.com/steeve/boot2docker/archive/v0.5.2.tar.gz"
  sha1 "487bf0556c97a35fd4af942e2802be0b34c3fd74"

  depends_on "docker"

  def install
    bin.install "boot2docker"
  end

  test do
    system "#{bin}/boot2docker", "info"
  end
end