Package Details: gpuvis-git 0.1+6.g8c4eddaa2e-1

Git Clone URL: https://aur.archlinux.org/gpuvis-git.git (read-only, click to copy)
Package Base: gpuvis-git
Description: GPU trace visualizer
Upstream URL: https://github.com/mikesart/gpuvis
Licenses: MIT
Conflicts: gpuvis
Provides: gpuvis
Submitter: 1ace
Maintainer: lostgoat
Last Packager: lostgoat
Votes: 0
Popularity: 0.000000
First Submitted: 2017-09-26 23:04 (UTC)
Last Updated: 2022-04-01 15:11 (UTC)

Latest Comments

lostgoat commented on 2022-04-01 15:13 (UTC)

I just pushed the fix, thanks ABelliqueux.

ABelliqueux commented on 2022-04-01 14:50 (UTC)

I had to edit PKGBUILD, line 29, and replace

install -Dm644 gpuvis/gpuvis.desktop -t "$pkgdir/usr/share/applications/"

with

install -Dm644 gpuvis/com.github.gpuvis.Gpuvis.desktop -t "$pkgdir/usr/share/applications/"

for the package to install successfully.

1ace commented on 2022-02-07 21:42 (UTC)

@lmartinez-mirror: thanks for your patch! I'm sorry I missed it for so many months, but I have now incorporated your suggestions into my 0.1 update, and added you as a maintainer on this package :)

lmartinez-mirror commented on 2021-06-29 18:05 (UTC)

This package is missing several dependencies. I've attached a patch below to apply

diff --git a/PKGBUILD b/PKGBUILD
index 4f1133e..3cf9b8c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,13 +1,15 @@
 # Maintainer: Eric Engestrom <aur [at] engestrom [dot] ch>
+# Contributor: Luis Martinez <luis dot martinez at tuta dot io>

 pkgname=gpuvis-git
-pkgver=r1649.e2c58f6
+pkgver=r1697.0eeb7f8
 pkgrel=1
-pkgdesc=""
-arch=(x86_64)
+pkgdesc="GPU trace visualizer"
+arch=('x86_64')
 url="https://github.com/mikesart/gpuvis"
 license=('MIT')
-depends=('cmake')
+depends=('sdl2' 'freetype2' 'gtk3')
+makedepends=('cmake' 'git')
 source=("git+$url")
 sha1sums=('SKIP')

@@ -29,6 +31,6 @@ build() {

 package() {
   cd "$srcdir"/gpuvis
-  install -dm755 "$pkgdir/usr/bin/"
-  install -m755 build/gpuvis "$pkgdir/usr/bin/"
+  install -Dm755 build/gpuvis -t "$pkgdir/usr/bin/"
+  install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
 }

lostgoat commented on 2019-08-30 01:20 (UTC)

The gpuvis project has the build fixes upstream now, so fix.diff actually makes this package fail to build.

Can fix.diff be removed?