homebrew-core/Formula/xhyve.rb
Bartek Rutkowski 910a0f7fff xhyve: update URL and description
Closes Homebrew/homebrew#41774.

Signed-off-by: Alex Dunn <dunn.alex@gmail.com>
2015-07-16 17:00:42 -07:00

23 lines
614 B
Ruby

class Xhyve < Formula
desc "xhyve, lightweight OS X virtualization solution based on FreeBSD's bhyve"
homepage "https://github.com/mist64/xhyve"
url "https://github.com/mist64/xhyve/archive/v0.1.0.tar.gz"
sha256 "75be0cf1ab345874aef00833e34cf337e71aad0f946d7f9bf8ade248fc4f6b59"
head "https://github.com/mist64/xhyve.git"
bottle do
cellar :any
sha256 "cfbc2e2bf6b8e2fe8892779c9e6dadedab2f0cedfb63aa648bc26febd0c1257a" => :yosemite
end
depends_on :macos => :yosemite
def install
system "make"
bin.install "build/xhyve"
end
test do
system "#{bin}/xhyve", "-h"
end
end