From a5812cf2d94ddabe7a8fd981e982a7768a19260a Mon Sep 17 00:00:00 2001 From: whelan Date: Thu, 5 Feb 2026 20:37:58 -0500 Subject: [PATCH] Update to v5.1.2.18 --- .SRCINFO | 6 +++--- PKGBUILD | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index e56892c093834..6a642f88f5d1c 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.17 - pkgrel = 47 + pkgver = 5.1.2.18 + pkgrel = 48 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.17.tar.gz::https://github.com/whelanh/scidCommunity/archive/9bc0353648d09ee2682b3d097c22007f2877fd02.tar.gz + source = scidcommunity-5.1.2.18.tar.gz::https://github.com/whelanh/scidCommunity/archive/2b1558ee839ba33a2b22a3dd4f590e03e3c1a05d.tar.gz sha256sums = SKIP pkgname = scidcommunity diff --git a/PKGBUILD b/PKGBUILD index 1044490b5845b..6bccd181b9867 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,24 +1,24 @@ # Maintainer: Hugh Whelan pkgname=scidcommunity -pkgver=5.1.2.17 -pkgrel=47 +pkgver=5.1.2.18 +pkgrel=48 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/9bc0353648d09ee2682b3d097c22007f2877fd02.tar.gz") +source=("${pkgname}-${pkgver}.tar.gz::https://github.com/whelanh/scidCommunity/archive/2b1558ee839ba33a2b22a3dd4f590e03e3c1a05d.tar.gz") sha256sums=('SKIP') # Safe to skip: integrity verified by commit hash build() { - cd "${srcdir}/scidCommunity-9bc0353648d09ee2682b3d097c22007f2877fd02" + cd "${srcdir}/scidCommunity-2b1558ee839ba33a2b22a3dd4f590e03e3c1a05d" ./configure --prefix=/usr make all } package() { - cd "${srcdir}/scidCommunity-9bc0353648d09ee2682b3d097c22007f2877fd02" + cd "${srcdir}/scidCommunity-2b1558ee839ba33a2b22a3dd4f590e03e3c1a05d" # 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" }