From 9c7c4dbe946955b392dbad5d57a2acbf0ea03182 Mon Sep 17 00:00:00 2001 From: whelan Date: Sun, 22 Feb 2026 09:48:44 -0500 Subject: [PATCH] Update to v5.1.2.25 --- .SRCINFO | 6 +++--- PKGBUILD | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 5460016f35984..588a756b688c9 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.24 - pkgrel = 54 + pkgver = 5.1.2.25 + pkgrel = 55 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.24.tar.gz::https://github.com/whelanh/scidCommunity/archive/3a29479d8147d3e3e1f7b1c6eeeb515d6b14f498.tar.gz + source = scidcommunity-5.1.2.25.tar.gz::https://github.com/whelanh/scidCommunity/archive/e14d3024fb098cc08ab31c9dcf7181e78c38fbfe.tar.gz sha256sums = SKIP pkgname = scidcommunity diff --git a/PKGBUILD b/PKGBUILD index 298b7078f067b..3a3d1dd5c73e0 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,24 +1,24 @@ # Maintainer: Hugh Whelan pkgname=scidcommunity -pkgver=5.1.2.24 -pkgrel=54 +pkgver=5.1.2.25 +pkgrel=55 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/3a29479d8147d3e3e1f7b1c6eeeb515d6b14f498.tar.gz") +source=("${pkgname}-${pkgver}.tar.gz::https://github.com/whelanh/scidCommunity/archive/e14d3024fb098cc08ab31c9dcf7181e78c38fbfe.tar.gz") sha256sums=('SKIP') # Safe to skip: integrity verified by commit hash build() { - cd "${srcdir}/scidCommunity-3a29479d8147d3e3e1f7b1c6eeeb515d6b14f498" + cd "${srcdir}/scidCommunity-e14d3024fb098cc08ab31c9dcf7181e78c38fbfe" ./configure --prefix=/usr make all } package() { - cd "${srcdir}/scidCommunity-3a29479d8147d3e3e1f7b1c6eeeb515d6b14f498" + cd "${srcdir}/scidCommunity-e14d3024fb098cc08ab31c9dcf7181e78c38fbfe" # 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" }