lib32-lsfg-vk-git
Clones and builds the project's own source from its self-hosted git server (git.lsfg-vk.dev), which is plausibly the project's own infrastructure; SKIP'd checksum on a git source is normal AUR practice, and no prebuilt binaries or obfuscated payloads are involved.
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 75%): Clones and builds the project's own source from its self-hosted git server (git.lsfg-vk.dev), which is plausibly the project's own infrastructure; SKIP'd checksum on a git source is normal AUR practice, and no prebuilt binaries or obfuscated payloads are involved.
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:25
source=('git+https://git.lsfg-vk.dev/lsfg-vk.git#branch=master')
PKGBUILD
1 offending line(s) highlighted# Maintainer: PancakeTAS <pancake@mgnet.work>
pkgname=lib32-lsfg-vk-git
_pkgname=lsfg-vk
pkgver=2.0.0.rc1.r0.gf715073
pkgrel=1
pkgdesc="Lossless Scaling Frame Generation on Linux"
arch=('i686' 'x86_64')
url="https://lsfg-vk.dev"
license=('CC-BY-NC-ND-4.0')
depends=(
'gcc-libs'
'vulkan-icd-loader'
'lsfg-vk-git'
)
makedepends=(
'clang'
'llvm'
'cmake'
'ninja'
'git'
)
provides=("${pkgname%-git}=${pkgver}")
conflicts=("${pkgname%-git}")
source=('git+https://git.lsfg-vk.dev/lsfg-vk.git#branch=master')
sha256sums=('SKIP')
pkgver() {
cd "$srcdir/$_pkgname"
tag=$(git describe --tags --abbrev=0)
commits=$(git rev-list --count "${tag}..HEAD")
sha=$(git rev-parse --short=7 HEAD)
printf '%s.r%d.g%s' "${tag//-/.}" "$commits" "$sha"
}
build() {
cd "$srcdir/$_pkgname"
cmake -B build -G Ninja \
-DCMAKE_INSTALL_PREFIX="${pkgdir}/usr" \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON \
-DCMAKE_CXX_COMPILER=clang++ \
-DCMAKE_CXX_FLAGS=-m32 \
-DLSFGVK_LAYER_LIBRARY_PATH=liblsfg-vk-layer.x86.so \
-DLSFGVK_LAYER_MULTILIB_X86=ON \
-DLSFGVK_BUILD_LAYER=ON \
-DLSFGVK_BUILD_UI=OFF \
-DLSFGVK_BUILD_CLI=OFF \
-DLSFGVK_MANAGED=ON \
-DLSFGVK_INSTALL_LIBRARIES=OFF
cmake --build build
}
package() {
cd "$srcdir/$_pkgname"
cmake --install build
install -Dm644 LICENSE.txt \
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-28 17:39:13 | Low | 3 |
| 2026-08-28 17:36:11 | Medium | 2 |