diff --git a/.SRCINFO b/.SRCINFO index 2718dccc3212..e80556440414 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.06 - pkgrel = 36 + pkgver = 5.1.2.07 + pkgrel = 37 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.06.tar.gz::https://github.com/whelanh/scidCommunity/archive/f4fc8ffcd929503388e56ea66b6a17944bac62d8.tar.gz + source = scidcommunity-5.1.2.07.tar.gz::https://github.com/whelanh/scidCommunity/archive/e56b0bccd496f899c3b9d5172ac362af369cb221.tar.gz sha256sums = SKIP pkgname = scidcommunity diff --git a/PKGBUILD b/PKGBUILD index 5cc38b7574da..5e51b653c691 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,24 +1,24 @@ # Maintainer: Hugh Whelan pkgname=scidcommunity -pkgver=5.1.2.06 -pkgrel=36 +pkgver=5.1.2.07 +pkgrel=37 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/f4fc8ffcd929503388e56ea66b6a17944bac62d8.tar.gz") +source=("${pkgname}-${pkgver}.tar.gz::https://github.com/whelanh/scidCommunity/archive/e56b0bccd496f899c3b9d5172ac362af369cb221.tar.gz") sha256sums=('SKIP') # Safe to skip: integrity verified by commit hash build() { - cd "${srcdir}/scidCommunity-f4fc8ffcd929503388e56ea66b6a17944bac62d8" + cd "${srcdir}/scidCommunity-e56b0bccd496f899c3b9d5172ac362af369cb221" ./configure --prefix=/usr make all } package() { - cd "${srcdir}/scidCommunity-f4fc8ffcd929503388e56ea66b6a17944bac62d8" + cd "${srcdir}/scidCommunity-e56b0bccd496f899c3b9d5172ac362af369cb221" # 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" }