From 1846e4a1a63b7d34e35e5a925d9a351c75e34dc5 Mon Sep 17 00:00:00 2001 From: Frank Stellmacher <171614930+Psychotoxical@users.noreply.github.com> Date: Thu, 30 Apr 2026 02:02:20 +0200 Subject: [PATCH] fix(aur): use app-v prefixed source dir in build/package (#379) GitHub's tag archive folder is named after the tag (with only a leading 'v' stripped). Tags like 'app-v1.44.0' produce 'psysonic-app-v1.44.0/', not 'psysonic-1.44.0/', so the previous 'cd "psysonic-$pkgver"' failed with "Datei oder Verzeichnis nicht gefunden". This was hotfixed on AUR as 1.44.0-2; mirror here so the next bump doesn't regress. --- packages/aur/PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/aur/PKGBUILD b/packages/aur/PKGBUILD index 065ded06..083c6eb5 100644 --- a/packages/aur/PKGBUILD +++ b/packages/aur/PKGBUILD @@ -24,7 +24,7 @@ source=("$pkgname-$pkgver.tar.gz::https://github.com/Psychotoxical/psysonic/arch sha256sums=('SKIP') build() { - cd "psysonic-$pkgver" + cd "psysonic-app-v$pkgver" export CARGO_HOME="$srcdir/cargo-home" export npm_config_cache="$srcdir/npm-cache" @@ -48,7 +48,7 @@ build() { } package() { - cd "psysonic-$pkgver" + cd "psysonic-app-v$pkgver" # Binary (in /usr/lib to make room for the wrapper) install -Dm755 "src-tauri/target/release/psysonic" "$pkgdir/usr/lib/psysonic/psysonic"