aur/PKGBUILD
2026-01-27 05:58:43 -05:00

24 lines
984 B
Bash

# Maintainer: Hugh Whelan <brickhousedevelopers@gmail.com>
pkgname=scidcommunity
pkgver=5.1.2.08
pkgrel=38
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/631c7edee0a6fd55721bb43e65518d79fe38deb1.tar.gz")
sha256sums=('SKIP') # Safe to skip: integrity verified by commit hash
build() {
cd "${srcdir}/scidCommunity-631c7edee0a6fd55721bb43e65518d79fe38deb1"
./configure --prefix=/usr
make all
}
package() {
cd "${srcdir}/scidCommunity-631c7edee0a6fd55721bb43e65518d79fe38deb1"
# 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"
}