From d3bee0ffa77456b9af5ba78a1ff929f33e7bbd6f Mon Sep 17 00:00:00 2001 From: whelanh Date: Thu, 18 Dec 2025 11:39:43 +0000 Subject: [PATCH] Improve Lichess Tournament monitoring --- .SRCINFO | 2 +- PKGBUILD | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 74e67951dc1f..9156273e2697 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -10,7 +10,7 @@ pkgbase = scidcommunity makedepends = git depends = tcl depends = tk - source = scidcommunity-5.1.1.tar.gz::https://github.com/whelanh/scidCommunity/archive/58cd45c6d4222b735f7787223314587a06af4983.tar.gz + source = scidcommunity-5.1.1.tar.gz::https://github.com/whelanh/scidCommunity/archive/fd2bb32f23723f13c1dfefb2785f2f1b563e7747.tar.gz sha256sums = SKIP pkgname = scidcommunity diff --git a/PKGBUILD b/PKGBUILD index 28b41ed69c56..6daafcb2d345 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -8,17 +8,17 @@ 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/58cd45c6d4222b735f7787223314587a06af4983.tar.gz") +source=("${pkgname}-${pkgver}.tar.gz::https://github.com/whelanh/scidCommunity/archive/fd2bb32f23723f13c1dfefb2785f2f1b563e7747.tar.gz") sha256sums=('SKIP') # Safe to skip: integrity verified by commit hash build() { - cd "${srcdir}/scidCommunity-58cd45c6d4222b735f7787223314587a06af4983" + cd "${srcdir}/scidCommunity-fd2bb32f23723f13c1dfefb2785f2f1b563e7747" ./configure --prefix=/usr make all } package() { - cd "${srcdir}/scidCommunity-58cd45c6d4222b735f7787223314587a06af4983" + cd "${srcdir}/scidCommunity-fd2bb32f23723f13c1dfefb2785f2f1b563e7747" # 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" }