Package Details: mangohud-git 0.7.2.r110.g24d3cd9-1

Git Clone URL: https://aur.archlinux.org/mangohud-git.git (read-only, click to copy)
Package Base: mangohud-git
Description: A Vulkan overlay layer for monitoring FPS, temperatures, CPU/GPU load and more
Upstream URL: https://github.com/flightlessmango/MangoHud
Keywords: benchmark hud opengl overlay performance vulkan
Licenses: MIT
Conflicts: mangoapp, mangohud, mangohud-common-git
Provides: mangoapp, mangohud
Replaces: mangoapp
Submitter: dnmodder
Maintainer: dnmodder (jackun)
Last Packager: dnmodder
Votes: 25
Popularity: 0.24
First Submitted: 2020-02-06 22:40 (UTC)
Last Updated: 2024-12-08 18:34 (UTC)

Required by (32)

Sources (1)

Pinned Comments

d-air1 commented on 2024-05-21 03:05 (UTC)

Can whoever keeps flagging this out of date state why? This package is installing its own version of imgui and implot is not required. This package builds just fine without it. If for some reason you need that then can you have a discussion with the maintainer of the package instead of having everyone who uses this package get messages about it being out of date for the same reasons when it works just fine.

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 9 Next › Last »

Billli11 commented on 2022-02-16 12:46 (UTC)

Would it be possible to add meson config

-Dmangoapp=true

in to PKGBUILD for building mangoapp?

Thanks.

yochananmarqos commented on 2021-08-01 17:17 (UTC)

@PedroHC: Providing and conflicting with mangohud is enough, no need for the pkgver.

PedroHLC commented on 2021-08-01 16:07 (UTC)

@yochananmarqos - nope, it does: if some package needs to "depends" on "mangohud", be it Lutris, Steam, or a custom script, then pacman will be satisfied if the person has either the "stable" mangohud, or the VCS one installed.

yochananmarqos commented on 2021-08-01 15:26 (UTC)

@PedroHLC: That makes no sense for a VCS package.

PedroHLC commented on 2021-08-01 15:17 (UTC)

Please add:

  • provides=("mangohud=$pkgver") to package_mangohud-git()

  • provides=("lib32-mangohud=$pkgver") to package_lib32-mangohud-git()

  • provides=("mangohud-common=$pkgver") to package_mangohud-common-git()

dnmodder commented on 2021-01-09 22:34 (UTC)

@DefaultSpatula Arreglado.

DefaultSpatula commented on 2021-01-09 18:28 (UTC)

git and dbus are missing from makedepends

dnmodder commented on 2021-01-09 17:42 (UTC)

@iwonbigbro @PedroHLC it is fixed.

PedroHLC commented on 2021-01-05 16:03 (UTC) (edited on 2021-01-05 16:08 (UTC) by PedroHLC)

What about migrating to the author's PKGBUILD?: https://raw.githubusercontent.com/flightlessmango/PKGBUILDS/master/mangohud/PKGBUILD

EDIT: Sorry, it's broken too.

iwonbigbro commented on 2021-01-03 20:13 (UTC)

Here's a patch to workaround the problem...

https://paste.ubuntu.com/p/5dzgSftqrc/

Apply it by running...

$ cd mangohud-git
$ patch -p1 <<PATCH
diff --git a/PKGBUILD b/PKGBUILD
index a074961..03cd2b4 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
 _pkgbase=mangohud
 pkgbase=$_pkgbase-git
 pkgname=('mangohud-git' 'lib32-mangohud-git' 'mangohud-common-git')
-pkgver=0.5.1.r18.g9391822
+pkgver=0.6.1.r41.g4862d83
 pkgrel=1
 url='https://github.com/flightlessmango/MangoHud'
 license=('MIT')
@@ -15,6 +15,10 @@ replaces=('vulkan-mesa-layer-mango' 'lib32-vulkan-mesa-layer-mango')
 source=("$_pkgbase::git+$url#branch=develop")
 sha512sums=('SKIP')

+arch-meson() {
+    /usr/bin/arch-meson --wrap-mode default "$@"
+}
+
 pkgver() {
     cd "$_pkgbase"
     git describe --tags | sed -r 's/^v//;s/([^-]*-g)/r\1/;s/-/./g'
PATCH