Commit 7c421258 authored by lyxell's avatar lyxell Committed by GitHub

Merge pull request #674 from flyingP0tat0/qemu

Add qemu package
parents 4a1ea3fb 28b14080
require 'package'
class Qemu < Package
version '2.9.0'
source_url 'http://download.qemu-project.org/qemu-2.9.0.tar.xz'
source_sha1 '5cc63c6cababaaa7d0685e8b32bacf5022873ebc'
depends_on 'glib'
depends_on 'autoconf'
depends_on 'gettext'
depends_on 'automake'
depends_on 'libtool'
def self.build
system "./configure"
system "make"
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment