xhyve 0.1.0 (new formula)
xhyve is a lightweight virtualization solution for OS X that is capable of running Linux. It is a port of FreeBSD’s bhyve, a KVM+QEMU alternative written by Peter Grehan and Neel Natu. xhyve is in very early stage of development, but it already allows running a Linux boxes. See also http://www.pagetable.com/?p=831 Closes Homebrew/homebrew#40812. Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
This commit is contained in:
parent
1aba5f4d84
commit
c11c53557e
1 changed files with 18 additions and 0 deletions
18
Formula/xhyve.rb
Normal file
18
Formula/xhyve.rb
Normal file
|
@ -0,0 +1,18 @@
|
|||
class Xhyve < Formula
|
||||
desc "xhyve, a lightweight OS X virtualization solution"
|
||||
homepage "http://www.pagetable.com/?p=831"
|
||||
url "https://github.com/mist64/xhyve/archive/v0.1.0.tar.gz"
|
||||
sha256 "75be0cf1ab345874aef00833e34cf337e71aad0f946d7f9bf8ade248fc4f6b59"
|
||||
head "https://github.com/mist64/xhyve.git"
|
||||
|
||||
depends_on :macos => :yosemite
|
||||
|
||||
def install
|
||||
system "make"
|
||||
bin.install "build/xhyve"
|
||||
end
|
||||
|
||||
test do
|
||||
system "#{bin}/xhyve", "-h"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue