From 82d75878062bd0bc8d9118aae820d98fd408ea63 Mon Sep 17 00:00:00 2001 From: mthines Date: Tue, 3 Feb 2026 11:56:19 +0100 Subject: [PATCH] Fix: Prevent stripping of Deno standalone binary (pkgrel=2) The binary was being stripped by makepkg, which removed the standalone binary section needed by Deno. Added options=('!strip') to prevent this. --- .SRCINFO | 3 ++- PKGBUILD | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 25ed0d1259e0..2a67db0aaf79 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,11 +1,12 @@ pkgbase = gw-tools pkgdesc = Git worktree manager - Streamline your multi-branch development workflow pkgver = 0.13.14 - pkgrel = 1 + pkgrel = 2 url = https://github.com/mthines/gw-tools arch = x86_64 arch = aarch64 license = MIT + options = !strip provides = gw conflicts = gw source_x86_64 = gw-tools-0.13.14-x64::https://github.com/mthines/gw-tools/releases/download/v0.13.14/gw-linux-x64 diff --git a/PKGBUILD b/PKGBUILD index 4df808065b9b..800f1bbce0ea 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,11 +1,12 @@ # Maintainer: Mads Thines Coello pkgname=gw-tools pkgver=0.13.14 -pkgrel=1 +pkgrel=2 pkgdesc="Git worktree manager - Streamline your multi-branch development workflow" arch=('x86_64' 'aarch64') url="https://github.com/mthines/gw-tools" license=('MIT') +options=('!strip') provides=('gw') conflicts=('gw')