boot2docker 0.5.2 (new formula)

Closes Homebrew/homebrew#26435.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
Welton Rodrigo 2014-02-09 14:41:19 +00:00 committed by Mike McQuaid
parent 85c315bb78
commit 0a44b1c49d

17
Formula/boot2docker.rb Normal file
View file

@ -0,0 +1,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