diff options
| author | Welton Rodrigo | 2014-02-09 14:41:19 +0000 |
|---|---|---|
| committer | Mike McQuaid | 2014-02-09 14:41:23 +0000 |
| commit | a68cbbfa20fb4455bfcb0df4a1b24db83c77a129 (patch) | |
| tree | b256b126dd9403a74317d1c650bb42521a370508 /Library/Formula/boot2docker.rb | |
| parent | f06ffbe4c8fb7932da7c2cf13ca22f66ae948993 (diff) | |
| download | homebrew-a68cbbfa20fb4455bfcb0df4a1b24db83c77a129.tar.bz2 | |
boot2docker 0.5.2 (new formula)
Closes #26435.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula/boot2docker.rb')
| -rw-r--r-- | Library/Formula/boot2docker.rb | 17 |
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 |
