Package Details: qtemu-git r247.d230e82-1

Git Clone URL: https://aur.archlinux.org/qtemu-git.git (read-only, click to copy)
Package Base: qtemu-git
Description: Qt5 GUI front-end for QEMU, similar to VirtualBox.
Upstream URL: https://gitlab.com/qtemu/gui
Licenses: GPL2
Conflicts: qtemu
Submitter: gustawho
Maintainer: cwrau
Last Packager: cwrau
Votes: 4
Popularity: 0.000000
First Submitted: 2018-09-15 04:08 (UTC)
Last Updated: 2019-11-18 09:56 (UTC)

Required by (0)

Sources (1)

Latest Comments

1 2 Next › Last »

gustawho commented on 2025-03-31 15:02 (UTC)

This PKGBUILD should do the trick:

# Maintainer: Chris Werner Rau < aur [ at ] cwrau [ dot ] io >
# Contributor: Gustavo Castro < gustawho [ at ] gmail [ dot ] com >

pkgname=qtemu-git
pkgver=2.1.r26.gd6c2d66
pkgrel=1
pkgdesc="Qt6 GUI front-end for QEMU, similar to VirtualBox."
url="https://gitlab.com/qtemu/gui"
license=('GPL-2.0-or-later')
arch=('i686' 'x86_64')
makedepends=('git' 'cmake' 'qt6-svg')
depends=('qemu' 'qt6-base')
conflicts=('qtemu')
source=($pkgname::"git+https://gitlab.com/qtemu/gui.git")
sha256sums=('SKIP')

pkgver() {
  cd "$pkgname"
  git describe --long --abbrev=7 | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}

build() {
  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RelWithDebInfo -DLIB_INSTALL_DIR=lib -B build -S "$pkgname"
  cmake --build build --config RelWithDebInfo
}

package() {
  DESTDIR="${pkgdir}" cmake --install build --config RelWithDebInfo
  install -Dm644 "${srcdir}/$pkgname"/qtemu.desktop "${pkgdir}"/usr/share/applications/qtemu.desktop
  install -Dm644 "${srcdir}/$pkgname/qtemu.png" "${pkgdir}/usr/share/pixmaps/qtemu.png"
}

openmindead commented on 2025-03-31 14:08 (UTC)

This PKGBUILD needs to be adjusted in order to reflect recent upstream changes related to QT6 and cmake.

cwrau commented on 2019-11-18 09:57 (UTC) (edited on 2019-11-18 09:57 (UTC) by cwrau)

Thanks, @damir, I adjusted the URL!

damir commented on 2019-11-17 16:08 (UTC)

i think it would be good to have the URL set to https://gitlab.com/qtemu/gui

cwrau commented on 2019-09-19 12:26 (UTC)

Sorry, I didn't realise Thank you!

WorMzy commented on 2019-09-19 11:04 (UTC) (edited on 2019-09-19 11:08 (UTC) by WorMzy)

Please add git as a makedepend.

https://wiki.archlinux.org/index.php/VCS_package_guidelines#Guidelines

Oh, and please don't remove previous contributors from the PKGBUILD, just change their status from "Maintainer" to "Contributor".

https://wiki.archlinux.org/index.php/AUR_submission_guidelines#Rules_of_submission

HiJack88 commented on 2019-04-01 18:52 (UTC)

@Fincer:

Thank you for providing the updated pkgbuild. Everything ran fine here :)

Cheers!

Fincer commented on 2019-03-17 14:13 (UTC)

@mhussain + others

I fixed the PKGBUILD file. You can find it here: https://pastebin.com/raw/E8sJi4D4

The current version hosted on AUR uses deprecated/old source URL


@gustawho You are free to use the fixed PKGBUILD

mhussain commented on 2019-02-27 12:13 (UTC)

hi there, it asks for auth when trying to download the sources? username and password. anyway to fix this?