commit 2c328777bf9686dc2cbfb3f0f2d6e0e138ad8ddd Author: mthines Date: Tue Feb 3 11:00:29 2026 +0100 Initial import: gw-tools v0.12.28 diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..58126eaa3f7d --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,16 @@ +pkgbase = gw-tools + pkgdesc = Git worktree manager - Streamline your multi-branch development workflow + pkgver = 0.12.28 + pkgrel = 1 + url = https://github.com/mthines/gw-tools + arch = x86_64 + arch = aarch64 + license = MIT + provides = gw + conflicts = gw + source_x86_64 = gw-tools-0.12.28-x64::https://github.com/mthines/gw-tools/releases/download/v0.12.28/gw-linux-x64 + sha256sums_x86_64 = 08144e2d982e1226464e4c3f9aac902d65ecf01cf61a9c75b1975c1b43d94829 + source_aarch64 = gw-tools-0.12.28-arm64::https://github.com/mthines/gw-tools/releases/download/v0.12.28/gw-linux-arm64 + sha256sums_aarch64 = c6cc4c8173ba99b2b692f540916a43bd3da8c8381ee04707996209fd7b554b01 + +pkgname = gw-tools diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..55ba58de01fa --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,24 @@ +# Maintainer: Mads Thines Coello +pkgname=gw-tools +pkgver=0.12.28 +pkgrel=1 +pkgdesc="Git worktree manager - Streamline your multi-branch development workflow" +arch=('x86_64' 'aarch64') +url="https://github.com/mthines/gw-tools" +license=('MIT') +provides=('gw') +conflicts=('gw') + +source_x86_64=("$pkgname-$pkgver-x64::$url/releases/download/v$pkgver/gw-linux-x64") +source_aarch64=("$pkgname-$pkgver-arm64::$url/releases/download/v$pkgver/gw-linux-arm64") + +sha256sums_x86_64=('08144e2d982e1226464e4c3f9aac902d65ecf01cf61a9c75b1975c1b43d94829') +sha256sums_aarch64=('c6cc4c8173ba99b2b692f540916a43bd3da8c8381ee04707996209fd7b554b01') + +package() { + if [ "$CARCH" = "x86_64" ]; then + install -Dm755 "$srcdir/$pkgname-$pkgver-x64" "$pkgdir/usr/bin/gw" + else + install -Dm755 "$srcdir/$pkgname-$pkgver-arm64" "$pkgdir/usr/bin/gw" + fi +}