From 746ea5a2f09a4be1ccdd5b93dfffc47be5e391b3 Mon Sep 17 00:00:00 2001 From: whelanh Date: Sun, 14 Dec 2025 11:43:47 -0500 Subject: [PATCH] Update icon packaging: prefix /usr, bump pkgrel, new commit tarball --- .SRCINFO | 4 ++-- PKGBUILD | 14 +++++++------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 779f5be165ae..167da5d69a96 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.1 - pkgrel = 7 + pkgrel = 8 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.1.tar.gz::https://github.com/whelanh/scidCommunity/archive/c3e7351a3c08c06287de55b9622c850a0a66239e.tar.gz + source = scidcommunity-5.1.1.tar.gz::https://github.com/whelanh/scidCommunity/archive/018f2cbc04ef01e353fd846ddc3fd7459b994015.tar.gz sha256sums = SKIP pkgname = scidcommunity diff --git a/PKGBUILD b/PKGBUILD index 49538d1a71ec..d858f8c6cb06 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,24 +1,24 @@ # Maintainer: Hugh Whelan pkgname=scidcommunity pkgver=5.1.1 -pkgrel=7 +pkgrel=8 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/c3e7351a3c08c06287de55b9622c850a0a66239e.tar.gz") +source=("${pkgname}-${pkgver}.tar.gz::https://github.com/whelanh/scidCommunity/archive/018f2cbc04ef01e353fd846ddc3fd7459b994015.tar.gz") sha256sums=('SKIP') # Safe to skip: integrity verified by commit hash build() { - cd "${srcdir}/scidCommunity-c3e7351a3c08c06287de55b9622c850a0a66239e" - ./configure --prefix=/usr/local + cd "${srcdir}/scidCommunity-018f2cbc04ef01e353fd846ddc3fd7459b994015" + ./configure --prefix=/usr make all } package() { - cd "${srcdir}/scidCommunity-c3e7351a3c08c06287de55b9622c850a0a66239e" - # Override SHAREDIR and BINDIR to use DESTDIR - make install DESTDIR="${pkgdir}" SHAREDIR="${pkgdir}/usr/local/share/scid" BINDIR="${pkgdir}/usr/local/bin" + cd "${srcdir}/scidCommunity-018f2cbc04ef01e353fd846ddc3fd7459b994015" + # 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" }