class DockerMachineDriverXhyve < Formula desc "Docker Machine driver for xhyve" homepage "https://github.com/zchee/docker-machine-driver-xhyve" url "https://github.com/zchee/docker-machine-driver-xhyve.git", :tag => "v0.3.0", :revision => "b74c23dc15666ad6d5ccdd207b87a6c44bdd584d" head "https://github.com/zchee/docker-machine-driver-xhyve.git" bottle do sha256 "f650f9a530c52b62d6aeaeca51453f2488155f9c3b9e7ee6fec8f1006f4bad3b" => :sierra sha256 "4425bd727de66f57cc15f4c14d10cf764a1e968ac19022ead3f5144b3d859934" => :el_capitan sha256 "6042fe21e3e6e6feb46273796d5cbe9ba307ea73e3e6c40135f23e5e820f411d" => :yosemite end option "without-qcow2", "Do not support qcow2 disk image format" depends_on :macos => :yosemite depends_on "go" => :build depends_on "docker-machine" => :recommended if build.with? "qcow2" depends_on "opam" depends_on "libev" end def install (buildpath/"gopath/src/github.com/zchee/docker-machine-driver-xhyve").install Dir["{*,.git,.gitignore,.gitmodules}"] ENV["GOPATH"] = "#{buildpath}/gopath" build_root = buildpath/"gopath/src/github.com/zchee/docker-machine-driver-xhyve" build_tags = "lib9p" cd build_root do git_hash = `git rev-parse --short HEAD --quiet`.chomp if build.head? git_hash = "HEAD-#{git_hash}" end if build.with? "qcow2" build_tags << " qcow2" system "opam", "init", "--no-setup" opam_dir = "#{buildpath}/.brew_home/.opam" ENV["CAML_LD_LIBRARY_PATH"] = "#{opam_dir}/system/lib/stublibs:/usr/local/lib/ocaml/stublibs" ENV["OPAMUTF8MSGS"] = "1" ENV["PERL5LIB"] = "#{opam_dir}/system/lib/perl5" ENV["OCAML_TOPLEVEL_PATH"] = "#{opam_dir}/system/lib/toplevel" ENV.prepend_path "PATH", "#{opam_dir}/system/bin" system "opam", "install", "-y", "uri", "qcow-format", "conf-libev" end go_ldflags = "-w -s -X 'github.com/zchee/docker-machine-driver-xhyve/xhyve.GitCommit=Homebrew#{git_hash}'" ENV["GO_LDFLAGS"] = go_ldflags ENV["GO_BUILD_TAGS"] = build_tags system "make", "lib9p" system "make", "build" bin.install "bin/docker-machine-driver-xhyve" end end def caveats; <<-EOS.undent This driver requires superuser privileges to access the hypervisor. To enable, execute sudo chown root:wheel $(brew --prefix)/opt/docker-machine-driver-xhyve/bin/docker-machine-driver-xhyve sudo chmod u+s $(brew --prefix)/opt/docker-machine-driver-xhyve/bin/docker-machine-driver-xhyve EOS end test do assert_match "xhyve-memory-size", shell_output("#{Formula["docker-machine"].bin}/docker-machine create --driver xhyve -h") end end