Update to v5.1.2.20

This commit is contained in:
whelan 2026-02-09 07:14:38 -05:00
parent 7984e97891
commit e61509d4fd

View file

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