198e5a0780
Closes Homebrew/homebrew#26435. Closes Homebrew/homebrew#26627. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
17 lines
367 B
Ruby
17 lines
367 B
Ruby
require "formula"
|
|
|
|
class Boot2docker < Formula
|
|
homepage "https://github.com/steeve/boot2docker"
|
|
url 'https://github.com/steeve/boot2docker/archive/v0.5.4.tar.gz'
|
|
sha1 '881630491b335230d62a679b8dfbb52c3e249fb8'
|
|
|
|
depends_on "docker" => :recommended
|
|
|
|
def install
|
|
bin.install "boot2docker"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/boot2docker", "info"
|
|
end
|
|
end
|