Package Details: gale 1.13.4-1

Git Clone URL: https://aur.archlinux.org/gale.git (read-only, click to copy)
Package Base: gale
Description: A modern mod manager for Thunderstore
Upstream URL: https://kesomannen.com/gale
Licenses: GPL-3.0-or-later
Submitter: yochananmarqos
Maintainer: yochananmarqos
Last Packager: yochananmarqos
Votes: 1
Popularity: 0.20
First Submitted: 2026-02-19 02:03 (UTC)
Last Updated: 2026-05-14 14:44 (UTC)

Latest Comments

enaim commented on 2026-05-05 10:00 (UTC)

Hey, there seems to be an issue with the way you're installing the icons. gale.png ends up being a directory instead of the image file.

diff --git a/PKGBUILD b/PKGBUILD
index ec8d1fde7224..fb53bf7cbaf2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -48,12 +48,12 @@ package() {
   install -Dm755 "src-tauri/target/release/$pkgname" -t "$pkgdir/usr/bin/"

   for i in 32x32 128x128 128x128@2x; do
-    install -Dm644 "src-tauri/icons/${i}.png" -t \
+    install -Dm644 "src-tauri/icons/${i}.png" \
       "$pkgdir/usr/share/icons/hicolor/${i}/apps/$pkgname.png"
   done
   install -Dm644 images/icons/app-icon@0,25x.png \
     "$pkgdir/usr/share/icons/hicolor/256x256/apps/$pkgname.png"
-  install -Dm644 src-tauri/icons/icon.png -t \
+  install -Dm644 src-tauri/icons/icon.png \
       "$pkgdir/usr/share/icons/hicolor/512x512/apps/$pkgname.png"

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

here's a diff that should fix it. thanks.