New formula: qemu
Signed-off-by: David Höppner <0xffea@gmail.com>
This commit is contained in:
parent
927b963112
commit
2fefa7ccb0
1 changed files with 15 additions and 0 deletions
15
Formula/qemu.rb
Normal file
15
Formula/qemu.rb
Normal file
|
@ -0,0 +1,15 @@
|
|||
require 'formula'
|
||||
|
||||
class Qemu <Formula
|
||||
url 'http://download.savannah.gnu.org/releases/qemu/qemu-0.12.2.tar.gz'
|
||||
homepage 'http://www.qemu.org/'
|
||||
md5 '1d7c2d95acb6d0789de86508c608e26d'
|
||||
|
||||
def install
|
||||
system "./configure", "--prefix=#{prefix}",
|
||||
"--disable-darwin-user",
|
||||
"--enable-cocoa",
|
||||
"--disable-bsd-user"
|
||||
system "make install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue