diff --git a/.SRCINFO b/.SRCINFO index b603679943a47..1c0fd0e85b9b0 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.38 - pkgrel = 62 + pkgver = 5.1.2.39 + pkgrel = 63 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.38.tar.gz::https://github.com/whelanh/scidCommunity/archive/a0f93f7e6dc9bab278b7255915817bee6b6e4ad0.tar.gz + source = scidcommunity-5.1.2.39.tar.gz::https://github.com/whelanh/scidCommunity/archive/20ae2ce9598900e7f150c561eaadcbaaaf753d92.tar.gz sha256sums = SKIP pkgname = scidcommunity diff --git a/PKGBUILD b/PKGBUILD index 2e2cef4e5ff28..89996655d884e 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,24 +1,24 @@ # Maintainer: Hugh Whelan pkgname=scidcommunity -pkgver=5.1.2.38 -pkgrel=62 +pkgver=5.1.2.39 +pkgrel=63 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/a0f93f7e6dc9bab278b7255915817bee6b6e4ad0.tar.gz") +source=("${pkgname}-${pkgver}.tar.gz::https://github.com/whelanh/scidCommunity/archive/20ae2ce9598900e7f150c561eaadcbaaaf753d92.tar.gz") sha256sums=('SKIP') # Safe to skip: integrity verified by commit hash build() { - cd "${srcdir}/scidCommunity-a0f93f7e6dc9bab278b7255915817bee6b6e4ad0" + cd "${srcdir}/scidCommunity-20ae2ce9598900e7f150c561eaadcbaaaf753d92" ./configure --prefix=/usr make all } package() { - cd "${srcdir}/scidCommunity-a0f93f7e6dc9bab278b7255915817bee6b6e4ad0" + cd "${srcdir}/scidCommunity-20ae2ce9598900e7f150c561eaadcbaaaf753d92" # 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" }