Initial import of scidcommunity 5.1.1

This commit is contained in:
whelanh 2025-12-10 19:14:01 -05:00
commit 2c0b43c0ca
3 changed files with 52 additions and 0 deletions

16
.SRCINFO Normal file
View file

@ -0,0 +1,16 @@
pkgbase = scidcommunity
pkgdesc = Chess database application with play and training functionality
pkgver = 5.1.1
pkgrel = 1
url = https://github.com/whelanh/scidCommunity
arch = x86_64
license = GPL2
makedepends = gcc
makedepends = make
makedepends = git
depends = tcl
depends = tk
source = scidcommunity-5.1.1.tar.gz::https://github.com/whelanh/scidCommunity/archive/f7fad958155d9b555090bad165738213392e8a81.tar.gz
sha256sums = SKIP
pkgname = scidcommunity

12
LICENSE Normal file
View file

@ -0,0 +1,12 @@
Copyright (C) 2025 by Hugh Whelan <brickhousedevelopers@gmail.com>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

24
PKGBUILD Normal file
View file

@ -0,0 +1,24 @@
# Maintainer: Hugh Whelan <brickhousedevelopers@gmail.com>
pkgname=scidcommunity
pkgver=5.1.1
pkgrel=1
pkgdesc="Chess database application with play and training functionality"
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/f7fad958155d9b555090bad165738213392e8a81.tar.gz")
sha256sums=('SKIP') # Safe to skip: integrity verified by commit hash
build() {
cd "${srcdir}/scidCommunity-f7fad958155d9b555090bad165738213392e8a81"
./configure --prefix=/usr/local
make all
}
package() {
cd "${srcdir}/scidCommunity-f7fad958155d9b555090bad165738213392e8a81"
# Override SHAREDIR and BINDIR to use DESTDIR
make install DESTDIR="${pkgdir}" SHAREDIR="${pkgdir}/usr/local/share/scid" BINDIR="${pkgdir}/usr/local/bin"
}