mirror of
https://github.com/void-linux/void-packages.git
synced 2025-07-28 08:22:56 +02:00
New package: qemu-kvm-1.1.1.
This commit is contained in:
parent
f95e14369d
commit
09b57a4236
4 changed files with 86 additions and 0 deletions
18
srcpkgs/qemu-kvm/INSTALL
Normal file
18
srcpkgs/qemu-kvm/INSTALL
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
case "${ACTION}" in
|
||||||
|
post)
|
||||||
|
cat <<_EOF
|
||||||
|
==========================================================================
|
||||||
|
|
||||||
|
To use KVM your user must be added to the 'wheel' group:
|
||||||
|
|
||||||
|
$ usermod -aG wheel <username>
|
||||||
|
|
||||||
|
Don't forget to load the appropiate KVM module for your CPU:
|
||||||
|
|
||||||
|
$ modprobe kvm-amd # for AMD CPUs
|
||||||
|
$ modprobe kvm-intel # for Intel CPUs
|
||||||
|
|
||||||
|
==========================================================================
|
||||||
|
_EOF
|
||||||
|
;;
|
||||||
|
esac
|
1
srcpkgs/qemu-kvm/files/65-kvm.rules
Normal file
1
srcpkgs/qemu-kvm/files/65-kvm.rules
Normal file
|
@ -0,0 +1 @@
|
||||||
|
KERNEL=="kvm", GROUP="wheel", MODE="0660"
|
25
srcpkgs/qemu-kvm/qemu-kvm.rshlibs
Normal file
25
srcpkgs/qemu-kvm/qemu-kvm.rshlibs
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
librt.so.1
|
||||||
|
libglib-2.0.so.0
|
||||||
|
libpthread.so.0
|
||||||
|
libc.so.6
|
||||||
|
libz.so.1
|
||||||
|
libcurl.so.4
|
||||||
|
libuuid.so.1
|
||||||
|
libcap.so.2
|
||||||
|
libnss3.so
|
||||||
|
libnspr4.so
|
||||||
|
libutil.so.1
|
||||||
|
libbluetooth.so.3
|
||||||
|
libncursesw.so.6
|
||||||
|
libpulse.so.0
|
||||||
|
libasound.so.2
|
||||||
|
libvdeplug.so.3
|
||||||
|
libpng15.so.15
|
||||||
|
libjpeg.so.8
|
||||||
|
libsasl2.so.2
|
||||||
|
libgnutls.so.26
|
||||||
|
libSDL-1.2.so.0
|
||||||
|
libX11.so.6
|
||||||
|
libspice-server.so.1
|
||||||
|
libm.so.6
|
||||||
|
libcap-ng.so.0
|
42
srcpkgs/qemu-kvm/template
Normal file
42
srcpkgs/qemu-kvm/template
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
# Template file for 'qemu-kvm'
|
||||||
|
pkgname=qemu-kvm
|
||||||
|
version=1.1.1
|
||||||
|
revision=1
|
||||||
|
nostrip=yes
|
||||||
|
conflicts="qemu>=0"
|
||||||
|
provides="qemu-$version"
|
||||||
|
build_style=configure
|
||||||
|
configure_args="--prefix=/usr --sysconfdir=/etc --enable-spice
|
||||||
|
--enable-kvm --audio-drv-list=alsa,sdl,pa --disable-xen
|
||||||
|
--enable-vhost-net --enable-vnc-thread --enable-vnc-png
|
||||||
|
--enable-vnc-tls --enable-virtfs --disable-fdt --enable-vde"
|
||||||
|
makedepends="perl python attr-devel libpng-devel>=1.5.10 jpeg-devel ncurses-devel
|
||||||
|
libuuid-devel libX11-devel alsa-lib-devel gnutls-devel SDL-devel libbluetooth-devel
|
||||||
|
libsasl-devel spice-devel glib-devel MesaLib-devel pulseaudio-devel nss-devel
|
||||||
|
libcurl-devel xfsprogs-devel libcap-ng-devel libcap-devel vde2-devel"
|
||||||
|
conf_files="/etc/qemu/target-x86_64.conf"
|
||||||
|
short_desc="Open Source Processor Emulator -- KVM version"
|
||||||
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||||
|
homepage="http://www.linux-kvm.org"
|
||||||
|
license="GPL-2, LGPL-2.1"
|
||||||
|
distfiles="${SOURCEFORGE_SITE}/kvm/$pkgname-$version.tar.gz"
|
||||||
|
checksum=c6fab57ccadcad5deb34728623840a0141a0f3c8f29d0c253db577f059c796df
|
||||||
|
long_desc="
|
||||||
|
QEMU is a generic and open source machine emulator and virtualizer.
|
||||||
|
|
||||||
|
When used as a machine emulator, QEMU can run OSes and programs made for
|
||||||
|
one machine (e.g. an ARM board) on a different machine (e.g. your own PC).
|
||||||
|
By using dynamic translation, it achieves very good performances."
|
||||||
|
|
||||||
|
post_install() {
|
||||||
|
# symbolic link for backwards compatibility
|
||||||
|
ln -s qemu-system-x86_64 ${DESTDIR}/usr/bin/qemu-kvm
|
||||||
|
# symbolic link for to qemu binary for emulator apps
|
||||||
|
ln -s qemu-system-x86_64 ${DESTDIR}/usr/bin/qemu
|
||||||
|
# symbolic link for to qemu binary for emulator apps
|
||||||
|
ln -s qemu-system-x86_64 ${DESTDIR}/usr/bin/kvm
|
||||||
|
# fix man page
|
||||||
|
vmove usr/share/man/man1/qemu.1 usr/share/man/man1/qemu-kvm.1
|
||||||
|
|
||||||
|
vinstall ${FILESDIR}/65-kvm.rules 644 usr/lib/udev/rules.d
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue