Initial import: gw-tools v0.12.28

This commit is contained in:
mthines 2026-02-03 11:00:29 +01:00
commit 2c328777bf
No known key found for this signature in database
GPG key ID: E07B81CDB2E43F0E
2 changed files with 40 additions and 0 deletions

16
.SRCINFO Normal file
View file

@ -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

24
PKGBUILD Normal file
View file

@ -0,0 +1,24 @@
# Maintainer: Mads Thines Coello <madsthines@gmail.com>
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
}