livechess-bin
Downloads a prebuilt .deb from download.livechesscloud.com, which is plausibly the official DGT/LiveChess vendor domain matching the declared project URL (livechesscloud.com); checksum is provided, so the binary is verifiable. The only concern is that it is a prebuilt binary from a non-whitelisted host, but the host appears to be the project's own official download infrastructure.
Triggered rules
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
llm_review
The static rules flagged this MEDIUM, but an AI model (anthropic/claude-sonnet-4.6) reviewed the full PKGBUILD and judged it LOW (confidence 70%): Downloads a prebuilt .deb from download.livechesscloud.com, which is plausibly the official DGT/LiveChess vendor domain matching the declared project URL (livechesscloud.com); checksum is provided, so the binary is verifiable. The only concern is that it is a prebuilt binary from a non-whitelisted host, but the host appears to be the project's own official download infrastructure.
1 higher static finding superseded - not the current verdict (shown for transparency)
source_untrusted_domain
One or more source=() URLs point to a host outside the trusted allowlist (github.com, gitlab.com, codeberg.org, pypi.org, …).
-
PKGBUILD:15
source=("https://download.livechesscloud.com/installer/${pkgver}/DGT-LiveChess-${pkgver}-x86_64.deb")
PKGBUILD
1 offending line(s) highlighted# Maintainer: Your Name <your.email@example.com>
pkgname=livechess-bin
pkgver=2.2
pkgrel=2
pkgdesc="DGT LiveChess software for DGT e-Boards"
arch=('x86_64')
url="https://www.livechesscloud.com/software/"
license=('custom')
depends=('alsa-lib' 'cairo' 'fontconfig' 'freetype2' 'gcc-libs' 'gdk-pixbuf2' 'glib2'
'gtk2' 'libxi' 'libxrender' 'libxtst' 'libx11' 'libxext' 'pango')
provides=('livechess')
conflicts=('livechess')
options=('!strip')
noextract=("DGT-LiveChess-${pkgver}-x86_64.deb")
source=("https://download.livechesscloud.com/installer/${pkgver}/DGT-LiveChess-${pkgver}-x86_64.deb")
sha256sums=('456abb65819bdb56cf0918b523b32cf3ea53a3c5ba6be933e666895279ecfe2f')
prepare() {
bsdtar xf "DGT-LiveChess-${pkgver}-x86_64.deb"
}
package() {
bsdtar xf data.tar.xz -C "${pkgdir}"
find "${pkgdir}" -type d -exec chmod 755 {} +
if [ -f "${pkgdir}/usr/share/doc/DGT-LiveChess/copyright" ]; then
install -Dm644 "${pkgdir}/usr/share/doc/DGT-LiveChess/copyright" \
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
fi
install -Dm755 /dev/stdin "${pkgdir}/usr/bin/livechess" << 'EOF'
#!/bin/sh
exec /opt/DGTLiveChess/DGTLiveChess "$@"
EOF
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-19 09:43:40 | Low | 3 |
| 2026-08-19 09:41:53 | Medium | 3 |