require "formula" class Boot2docker < Formula homepage "https://github.com/boot2docker/boot2docker-cli" # Boot2docker and docker are generally updated at the same time. # Please update the version of docker too url "https://github.com/boot2docker/boot2docker-cli.git", :tag => "v1.3.3" head "https://github.com/boot2docker/boot2docker-cli.git" bottle do sha1 "67313ebf6f2cd0653d7f017ae783e92da1c9e44f" => :yosemite sha1 "68fe92df4290f9494ab6ce10cfe37e5b154b2abc" => :mavericks sha1 "ccdf2d4ed162f2bb49141e89853933dc8b64e9a1" => :mountain_lion end depends_on "docker" => :recommended depends_on "go" => :build def install (buildpath + "src/github.com/boot2docker/boot2docker-cli").install Dir[buildpath/"*"] cd "src/github.com/boot2docker/boot2docker-cli" do ENV["GOPATH"] = buildpath system "go", "get", "-d" ENV["GIT_DIR"] = cached_download/".git" system "make", "goinstall" end bin.install "bin/boot2docker-cli" => "boot2docker" end def plist; <<-EOS.undent Label #{plist_name} ProgramArguments #{opt_bin}/boot2docker up RunAtLoad EOS end test do system "#{bin}/boot2docker", "version" end end