42 lines
1.4 KiB
Plaintext
42 lines
1.4 KiB
Plaintext
# Description: Fast CPU emulator and virtualizer for all supported platforms
|
|
# URL: http://www.qemu-project.org/
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
# Depends on: dtc glib libusb linux-pam xorg-libpixman
|
|
# Optional: alsa-lib fuse3 gnutls libaio libjpeg-turbo libpng libsdl2 libseccomp libslirp libssh liburing libxkbcommon nettle nfs-utils numactl pipewire pulseaudio python3-sphinx python3-sphinx_rtd_theme sdl2_image snappy xkeyboard-config xkeyboard-config
|
|
|
|
name=qemu-all
|
|
version=9.0.0
|
|
release=1
|
|
source=(https://download.qemu.org/qemu-$version.tar.xz)
|
|
|
|
build() {
|
|
cd qemu-$version
|
|
|
|
## only needed for qemu-keymap
|
|
if [[ ! -e /usr/include/xkbcommon/xkbcommon-x11.h ]] && ! prt-get isinst xkeyboard-config; then
|
|
printf '\e[1;31m%-6s\e[m\n' "You need to install xkeyboard-config, then rebuild libxkbcommon to build qemu-keymap. We are disabling this feature now."
|
|
PKGMK_QEMU+=' --disable-xkbcommon'
|
|
fi
|
|
prt-get isinst python3-sphinx python3-sphinx_rtd_theme || PKGMK_QEMU+=' --disable-docs'
|
|
|
|
./configure $PKGMK_QEMU \
|
|
--prefix=/usr \
|
|
--cc="${CC:=gcc}" \
|
|
--host-cc="${CC:=gcc}" \
|
|
--sysconfdir=/etc \
|
|
--libexecdir=/usr/lib/qemu \
|
|
--disable-gtk \
|
|
--localstatedir=/var \
|
|
--enable-fdt=system \
|
|
--python=/usr/bin/python3
|
|
|
|
make ${MAKEFLAGS:=}
|
|
make DESTDIR=$PKG install
|
|
|
|
install -d $PKG/etc/udev/rules.d/
|
|
echo 'KERNEL=="kvm", NAME="kvm", OWNER="root", GROUP="kvm", MODE="0660"' > \
|
|
$PKG/etc/udev/rules.d/60-kvm.rules
|
|
|
|
rm -r $PKG/var
|
|
}
|