From bd46f34ec52e66f5a76d75174285a1ed0e9bb551 Mon Sep 17 00:00:00 2001 From: whelan Date: Mon, 9 Mar 2026 17:55:23 -0400 Subject: [PATCH] Update to v5.1.2.44 --- .SRCINFO | 6 +++--- PKGBUILD | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 29ca9c0073ed9..0165122662fa6 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = scidcommunity pkgdesc = Enhanced fork of Scid chess database with Chess.com/Lichess integration, tablebase lookup, improved search, and additional training features - pkgver = 5.1.2.41 - pkgrel = 66 + pkgver = 5.1.2.44 + pkgrel = 67 url = https://github.com/whelanh/scidCommunity arch = x86_64 license = GPL2 @@ -10,7 +10,7 @@ pkgbase = scidcommunity makedepends = git depends = tcl depends = tk - source = scidcommunity-5.1.2.41.tar.gz::https://github.com/whelanh/scidCommunity/archive/1f9e5dc6c16069e084793e65f2d53e768c542c43.tar.gz + source = scidcommunity-5.1.2.44.tar.gz::https://github.com/whelanh/scidCommunity/archive/a05338b393e2dcda370617be36c89e521e93675c.tar.gz sha256sums = SKIP pkgname = scidcommunity diff --git a/PKGBUILD b/PKGBUILD index 3b4b1bcc2e035..5470f190962af 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,24 +1,24 @@ # Maintainer: Hugh Whelan pkgname=scidcommunity -pkgver=5.1.2.41 -pkgrel=66 +pkgver=5.1.2.44 +pkgrel=67 pkgdesc="Enhanced fork of Scid chess database with Chess.com/Lichess integration, tablebase lookup, improved search, and additional training features" arch=('x86_64') url="https://github.com/whelanh/scidCommunity" license=('GPL2') depends=('tcl' 'tk') makedepends=('gcc' 'make' 'git') -source=("${pkgname}-${pkgver}.tar.gz::https://github.com/whelanh/scidCommunity/archive/1f9e5dc6c16069e084793e65f2d53e768c542c43.tar.gz") +source=("${pkgname}-${pkgver}.tar.gz::https://github.com/whelanh/scidCommunity/archive/a05338b393e2dcda370617be36c89e521e93675c.tar.gz") sha256sums=('SKIP') # Safe to skip: integrity verified by commit hash build() { - cd "${srcdir}/scidCommunity-1f9e5dc6c16069e084793e65f2d53e768c542c43" + cd "${srcdir}/scidCommunity-a05338b393e2dcda370617be36c89e521e93675c" ./configure --prefix=/usr make all } package() { - cd "${srcdir}/scidCommunity-1f9e5dc6c16069e084793e65f2d53e768c542c43" + cd "${srcdir}/scidCommunity-a05338b393e2dcda370617be36c89e521e93675c" # Install under /usr so desktop/icon files land in standard system paths make install DESTDIR="${pkgdir}" SHAREDIR="${pkgdir}/usr/share/scid" BINDIR="${pkgdir}/usr/bin"