diff options
author | begin-theadventure | 2025-02-03 20:59:49 +0100 |
---|---|---|
committer | begin-theadventure | 2025-02-03 20:59:49 +0100 |
commit | d203b7a1a8cc68f462f6b1a10dfae9426230b9f3 (patch) | |
tree | 20cd9bcd14530b6165070a2621dbbe9681b6b0b7 | |
download | aur-d203b7a1a8cc68f462f6b1a10dfae9426230b9f3.tar.gz |
Initial commit: 0.10.3
-rw-r--r-- | .SRCINFO | 14 | ||||
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | PKGBUILD | 19 |
3 files changed, 36 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..23bd4b69ac31 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,14 @@ +pkgbase = amdgpu_top-tui-bin + pkgdesc = Tool to display AMDGPU usage (TUI only version, binary release) + pkgver = 0.10.3 + pkgrel = 1 + url = https://github.com/Umio-Yasuno/amdgpu_top + arch = x86_64 + license = MIT + depends = libdrm + provides = amdgpu_top-tui + conflicts = amdgpu_top-tui + source = https://github.com/Umio-Yasuno/amdgpu_top/releases/download/v0.10.3/amdgpu-top_without_gui_0.10.3-1_amd64.deb + sha256sums = ff28d955947798c0147362650c99ba9f713578895d5d2451589d19c309767947 + +pkgname = amdgpu_top-tui-bin diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000000..1d65adf6de3a --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +* +!PKGBUILD +!.SRCINFO diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..d3b88edb3859 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,19 @@ +# Maintainer: begin-theadventure <begin-thecontact.ncncb at dralias dot com> + +pkgname=amdgpu_top-tui-bin +pkgver=0.10.3 +pkgrel=1 +pkgdesc="Tool to display AMDGPU usage (TUI only version, binary release)" +url="https://github.com/Umio-Yasuno/amdgpu_top" +license=('MIT') +arch=('x86_64') +depends=('libdrm') +provides=("amdgpu_top-tui") +conflicts=("amdgpu_top-tui") +source=("$url/releases/download/v$pkgver/amdgpu-top_without_gui_${pkgver}-1_amd64.deb") +sha256sums=('ff28d955947798c0147362650c99ba9f713578895d5d2451589d19c309767947') + +package() { + tar -xf data.tar.xz -C "$pkgdir" + mv "$pkgdir/usr/share/doc" "$pkgdir/usr/share/licenses" +} |