diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/qemu.rb | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Library/Formula/qemu.rb b/Library/Formula/qemu.rb index ced828813..6843fca33 100644 --- a/Library/Formula/qemu.rb +++ b/Library/Formula/qemu.rb @@ -2,8 +2,8 @@ require 'formula' class Qemu < Formula homepage 'http://www.qemu.org/' - url 'http://wiki.qemu-project.org/download/qemu-1.6.1.tar.bz2' - sha1 'ad3ef3709a8ce3a39bd343aa313cefd033afb561' + url 'http://wiki.qemu-project.org/download/qemu-1.7.0.tar.bz2' + sha1 '4b5a21a614207e74a61659f7a6edecad6c31be95' head 'git://git.qemu-project.org/qemu.git' @@ -16,6 +16,10 @@ class Qemu < Formula depends_on 'vde' => :optional depends_on 'sdl' => :optional + def patches + {:p0 => ['https://trac.macports.org/export/97499%20/trunk/dports/emulators/qemu/files/patch-configure.diff']} + end + def install args = %W[ --prefix=#{prefix} @@ -29,6 +33,6 @@ class Qemu < Formula args << (build.with?('vde') ? '--enable-vde' : '--disable-vde') ENV['LIBTOOL'] = 'glibtool' system "./configure", *args - system "make install" + system "make", "V=1", "install" end end |
