aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorChristian Moritz2013-12-06 02:35:22 +0100
committerAdam Vandenberg2013-12-05 19:41:31 -0800
commitb886e2b1bb8f8302ebf152bd0ac753fcd4b80dd2 (patch)
tree76642fe5ee47938e58c28df7aa6e102f12772327 /Library/Formula
parent5ff23e70a322aae108be83f8a450a2310ea8249c (diff)
downloadhomebrew-b886e2b1bb8f8302ebf152bd0ac753fcd4b80dd2.tar.bz2
qemu 1.7.0
Closes #24740. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/qemu.rb10
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