diff options
author | Juergen Daubert <jue@jue.li> | 2021-02-02 11:51:20 +0100 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2021-02-02 11:51:20 +0100 |
commit | 0e6e1e5ca86650537d6bb10b5319c0db41c0e0c8 (patch) | |
tree | facea4f8a34d3ffdcb11b7953b49bc0215f83cdc /qemu | |
parent | d666bf3e8a7cd9c6136e2888f91525b44c1f4e7f (diff) | |
download | opt-0e6e1e5ca86650537d6bb10b5319c0db41c0e0c8.tar.gz opt-0e6e1e5ca86650537d6bb10b5319c0db41c0e0c8.tar.xz |
qemu: adopted
Diffstat (limited to 'qemu')
-rw-r--r-- | qemu/.signature | 4 | ||||
-rw-r--r-- | qemu/Pkgfile | 12 |
2 files changed, 6 insertions, 10 deletions
diff --git a/qemu/.signature b/qemu/.signature index a196be01d..4ebed441e 100644 --- a/qemu/.signature +++ b/qemu/.signature @@ -1,6 +1,6 @@ untrusted comment: verify with /etc/ports/opt.pub -RWSE3ohX2g5d/eYKNdYVkDzG+nF5WfxJdmEffyPudn5gwvxoDi18T7+jFT/I7KHwwlyUpT1QbsM0o2c12gUxrQWFbo/e0zPzaQY= -SHA256 (Pkgfile) = 77cd7d9766770ffe05f52a7df909c70ebf13015e11bf2049e3a1fae710f2bfaf +RWSE3ohX2g5d/bZeV/nrhR2aHS3SfY9uN+VzEkq1OkqeCZEuO0zG7PaIEwm+1txgocDNFGX0+kiXQ2iqjJDjYjjC9KWsgBZSSgY= +SHA256 (Pkgfile) = 058cfcad4a265cd699bb6318bca97df9cb2a3de72fa6dfb16ee56605ed8d91c5 SHA256 (.footprint) = 12ce5e444e5f8592a98fb7a997eeb4f9285a44d4885136d12e88c9ca47a747ac SHA256 (qemu-5.2.0.tar.xz) = cb18d889b628fbe637672b0326789d9b0e3b8027e0445b936537c78549df17bc SHA256 (qemu-man-5.2.0.tar.xz) = afa32c7636f2ed22231046fc48ff28c8dea476524eaeebdec5e62efa301255f5 diff --git a/qemu/Pkgfile b/qemu/Pkgfile index 448d071d4..b979fd737 100644 --- a/qemu/Pkgfile +++ b/qemu/Pkgfile @@ -1,8 +1,8 @@ # Description: Fast CPU emulator and virtualizer for the x86 platform -# URL: https://www.qemu.org/ -# Maintainer: Thomas Penteker, tek at serverop dot de -# Depends on: libusb linux-pam util-linux glib libsdl2 xorg-libpixman libxkbcommon - +# URL: https://www.qemu.org/ +# Maintainer: Juergen Daubert, jue at crux dot nu +# Depends on: libusb linux-pam util-linux glib ninja libsdl2 libxkbcommon xorg-libpixman + name=qemu version=5.2.0 release=1 @@ -14,8 +14,6 @@ build() { ./configure \ --prefix=/usr \ - --cc="${CC:=gcc}" \ - --host-cc="${CC:=gcc}" \ --sysconfdir=/etc \ --disable-docs \ --libexecdir=/usr/lib/qemu \ @@ -23,7 +21,6 @@ build() { --localstatedir=/var \ --python=/usr/bin/python3 \ --target-list=x86_64-linux-user,i386-linux-user,i386-softmmu,x86_64-softmmu - make make DESTDIR=$PKG install @@ -32,5 +29,4 @@ build() { 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 - } |