Would it be possible to add meson config
-Dmangoapp=true
in to PKGBUILD for building mangoapp?
Thanks.
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) |
Would it be possible to add meson config
-Dmangoapp=true
in to PKGBUILD for building mangoapp?
Thanks.
@PedroHC: Providing and conflicting with mangohud
is enough, no need for the pkgver.
@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.
@PedroHLC: That makes no sense for a VCS package.
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()
@DefaultSpatula Arreglado.
git and dbus are missing from makedepends
@iwonbigbro @PedroHLC it is fixed.
What about migrating to the author's PKGBUILD?: https://raw.githubusercontent.com/flightlessmango/PKGBUILDS/master/mangohud/PKGBUILD
EDIT: Sorry, it's broken too.
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
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.