Game Info window now handles longer comments

This commit is contained in:
whelanh 2025-12-14 14:45:38 +00:00
parent a818e36ef5
commit 412d024c8e
2 changed files with 4 additions and 4 deletions

View file

@ -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/6cb28bbcea677b219ab4fc03d71f7699705d8b26.tar.gz
source = scidcommunity-5.1.1.tar.gz::https://github.com/whelanh/scidCommunity/archive/c3e7351a3c08c06287de55b9622c850a0a66239e.tar.gz
sha256sums = SKIP
pkgname = scidcommunity

View file

@ -8,17 +8,17 @@ 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/6cb28bbcea677b219ab4fc03d71f7699705d8b26.tar.gz")
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/whelanh/scidCommunity/archive/c3e7351a3c08c06287de55b9622c850a0a66239e.tar.gz")
sha256sums=('SKIP') # Safe to skip: integrity verified by commit hash
build() {
cd "${srcdir}/scidCommunity-6cb28bbcea677b219ab4fc03d71f7699705d8b26"
cd "${srcdir}/scidCommunity-c3e7351a3c08c06287de55b9622c850a0a66239e"
./configure --prefix=/usr/local
make all
}
package() {
cd "${srcdir}/scidCommunity-6cb28bbcea677b219ab4fc03d71f7699705d8b26"
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"
}