644d5d8c90
Closes Homebrew/homebrew#27894. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
14 lines
376 B
Ruby
14 lines
376 B
Ruby
require "formula"
|
|
|
|
class Boot2docker < Formula
|
|
homepage "https://github.com/boot2docker/boot2docker"
|
|
head "https://github.com/boot2docker/boot2docker.git"
|
|
url 'https://github.com/boot2docker/boot2docker/archive/v0.7.1.tar.gz'
|
|
sha1 '447ab4bd75d31654f93e546bab20a9ba6e1a4dcd'
|
|
|
|
depends_on "docker" => :recommended
|
|
|
|
def install
|
|
bin.install "boot2docker"
|
|
end
|
|
end
|