aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/boot2docker.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/boot2docker.rb b/Library/Formula/boot2docker.rb
new file mode 100644
index 000000000..96f6bba81
--- /dev/null
+++ b/Library/Formula/boot2docker.rb
@@ -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