From 13f54ad4ca826d2bab8034cff130290ee213e165 Mon Sep 17 00:00:00 2001 From: Breadway Date: Sat, 13 Jun 2026 23:00:46 +0800 Subject: [PATCH] Disable debug package so the main package publishes correctly makepkg's debug split produced a -debug pkg; the upload's head -1 could grab it instead of the main package. !debug yields a single package. Co-Authored-By: Claude Opus 4.8 --- packaging/arch/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/arch/PKGBUILD b/packaging/arch/PKGBUILD index 55649a7..520280e 100644 --- a/packaging/arch/PKGBUILD +++ b/packaging/arch/PKGBUILD @@ -10,7 +10,7 @@ license=('MIT') # mlua builds Lua from vendored C source. makepkg's default -flto=auto would # emit GCC LTO bitcode into liblua5.4.a, which the Rust (lld) link can't read, # leaving all lua_* symbols undefined. Disable LTO for a clean static link. -options=(!lto) +options=(!lto !debug) depends=('glibc' 'libgit2') optdepends=( 'libnotify: desktop notifications via bread.notify()'