diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/qemu |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/qemu')
-rw-r--r-- | extra/qemu/65-kvm.rules | 1 | ||||
-rw-r--r-- | extra/qemu/PKGBUILD | 35 | ||||
-rw-r--r-- | extra/qemu/qemu.install | 24 |
3 files changed, 60 insertions, 0 deletions
diff --git a/extra/qemu/65-kvm.rules b/extra/qemu/65-kvm.rules new file mode 100644 index 000000000..c2f7317aa --- /dev/null +++ b/extra/qemu/65-kvm.rules @@ -0,0 +1 @@ +KERNEL=="kvm", GROUP="kvm", MODE="0660" diff --git a/extra/qemu/PKGBUILD b/extra/qemu/PKGBUILD new file mode 100644 index 000000000..12baed1c6 --- /dev/null +++ b/extra/qemu/PKGBUILD @@ -0,0 +1,35 @@ +# $Id: PKGBUILD 110725 2011-02-21 20:11:19Z tpowa $ +# Maintainer: Tobias Powalowski <tpowa@archlinux.org> +pkgname=qemu +pkgver=0.14.0 +pkgrel=1 +pkgdesc="QEMU is a generic and open source processor emulator which achieves a good emulation speed by using dynamic translation." +arch=('i686' 'x86_64') +license=('GPL2' 'LGPL2.1') +url="http://wiki.qemu.org/Index.html" +makedepends=('texi2html' 'perl') +depends=('libjpeg' 'libpng' 'sdl' 'alsa-lib' 'esound' 'gnutls>=2.4.1' 'bluez' 'vde2' 'util-linux-ng' 'curl' 'libsasl') +backup=('etc/qemu/target-x86_64.conf') +install=qemu.install +source=(http://savannah.nongnu.org/download/${pkgname}/${pkgname}-${pkgver}.tar.gz + 65-kvm.rules) + +build() +{ + cd ${srcdir}/${pkgname}-${pkgver} + sed -i -e 's/lib64/lib/g' x86_64.ld + ./configure --prefix=/usr --sysconfdir=/etc --audio-drv-list=oss,alsa,sdl,esd \ + --audio-card-list=ac97,sb16,es1370,adlib \ + --enable-docs \ + --kerneldir="/usr/src/linux-$(uname -r)" + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} install + install -D -m644 ${srcdir}/65-kvm.rules \ + ${pkgdir}/lib/udev/rules.d/65-kvm.rules +} +md5sums=('f9d145d5c09de9f0984ffe9bd1229970' + 'b316a066d2f1bb57d8f5b7ea1d0d1caf') diff --git a/extra/qemu/qemu.install b/extra/qemu/qemu.install new file mode 100644 index 000000000..e16ac027c --- /dev/null +++ b/extra/qemu/qemu.install @@ -0,0 +1,24 @@ +# kvm: the new package version +post_install() { + # + groupadd kvm -f -g 78 + echo ">>> PLEASE READ FOR KVM USAGE!" + echo ">>> Load the correct KVM module, you will need a KVM capable CPU!" + echo ">>> Add yourself to the group 'kvm'." + echo ">>> Use 'qemu -enable-kvm' to use KVM." + echo "" + if [ "$(vercmp $2 0.11)" -lt 0 ]; then + echo "With the release of qemu and qemu-kvm 0.12.X, the kqemu kernel module" + echo "is no longer supported and will be removed from the repositories. You" + echo "can safely uninstall it from your system." + fi +} + +post_upgrade() { + post_install $1 +} + +post_remove() { + # + groupdel kvm +} |