Update to v5.1.2.31

This commit is contained in:
whelan 2026-02-24 07:55:41 -05:00
parent 9c7c4dbe94
commit 2c541d8997
2 changed files with 8 additions and 8 deletions

View file

@ -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.25
pkgrel = 55
pkgver = 5.1.2.31
pkgrel = 56
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.25.tar.gz::https://github.com/whelanh/scidCommunity/archive/e14d3024fb098cc08ab31c9dcf7181e78c38fbfe.tar.gz
source = scidcommunity-5.1.2.31.tar.gz::https://github.com/whelanh/scidCommunity/archive/45f5e7a80b50c24e53e8f61d4ce5d24ec3db0809.tar.gz
sha256sums = SKIP
pkgname = scidcommunity

View file

@ -1,24 +1,24 @@
# Maintainer: Hugh Whelan <brickhousedevelopers@gmail.com>
pkgname=scidcommunity
pkgver=5.1.2.25
pkgrel=55
pkgver=5.1.2.31
pkgrel=56
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/e14d3024fb098cc08ab31c9dcf7181e78c38fbfe.tar.gz")
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/whelanh/scidCommunity/archive/45f5e7a80b50c24e53e8f61d4ce5d24ec3db0809.tar.gz")
sha256sums=('SKIP') # Safe to skip: integrity verified by commit hash
build() {
cd "${srcdir}/scidCommunity-e14d3024fb098cc08ab31c9dcf7181e78c38fbfe"
cd "${srcdir}/scidCommunity-45f5e7a80b50c24e53e8f61d4ce5d24ec3db0809"
./configure --prefix=/usr
make all
}
package() {
cd "${srcdir}/scidCommunity-e14d3024fb098cc08ab31c9dcf7181e78c38fbfe"
cd "${srcdir}/scidCommunity-45f5e7a80b50c24e53e8f61d4ce5d24ec3db0809"
# 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"
}