serioussam-st8vi

maintainer tx00110xt · 0 votes · scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged The package downloads source code from GitHub (maintainer's fork) and a data archive from archive.org; the latter is non-whitelisted but hosts non-executable game modification data, not code, so the worst-case impact of a swap is limited to data tampering.

Triggered rules

LOW AI review downgraded a static finding llm_review

The static rules flagged this MEDIUM, but an AI model (qwen/qwen3-235b-a22b-07-25) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The package downloads source code from GitHub (maintainer's fork) and a data archive from archive.org; the latter is non-whitelisted but hosts non-executable game modification data, not code, so the worst-case impact of a swap is limited to data tampering.

1 higher static finding superseded - not the current verdict (shown for transparency)
MEDIUM source=() URL on a non-standard host 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:27 "https://archive.org/download/sam-tse-st8vi/SamTSE-ST8VI.tar.xz")

PKGBUILD

1 offending line(s) highlighted
1# Maintainer: Alexander <tx00100xt@yandex.ru>
2# Contributer: Alexander <tx00100xt@yandex.ru>
3
4pkgname=serioussam-st8vi
5pkginstdir=serioussamse
6st8vi=SamTSE-ST8VI.tar.xz
7pkgver=1.7.2
8_srcname="SE1-TSE-ST8VI-$pkgver"
9pkgrel=1
10pkgdesc="Serious Sam Classic ST8VI native Linux."
11arch=('i686' 'x86_64')
12url="https://github.com/tx00100xt/SE1-TSE-ST8VI"
13license=('GPL2')
14
15if pacman -Qq serioussam >/dev/null 2>&1; then
16 depends=('sdl2' 'python' 'bash' 'serioussam')
17elif pacman -Qq serioussam-vk >/dev/null 2>&1; then
18 depends=('sdl2' 'python' 'bash' 'serioussam-vk')
19else
20 echo "This package requires either "serioussam" or "serioussam-vk", but neither is installed."
21 echo "Compilation aborted."
22 return 1
23fi
24
25makedepends=('cmake' 'make' 'sed')
26source=("https://github.com/tx00100xt/SE1-TSE-ST8VI/archive/refs/tags/v$pkgver.tar.gz"
27 "https://archive.org/download/sam-tse-st8vi/SamTSE-ST8VI.tar.xz")
28noextract=("SamTSE-ST8VI.tar.xz")
29sha256sums=('3b7cdb8c7478cc019914880a75182970cc1a783a86e34729af3a4ae82d63b046'
30 "0a6954285f6ec430177e808fb6cf839f60163b78e23b1cca8f5a715dc7655d0d")
31
32if [[ $CARCH = "i686" ]]; then
33 _bits="32"
34else
35 _bits="64"
36fi
37
38prepare(){
39
40
41 # Install the ST8VI Modification data.
42 mkdir "$srcdir/$_srcname"/{SamTSE,SamTSE/Mods,SamTSE/Mods/ST8VI} || return 0
43 tar -xJvf "$srcdir/$st8vi" -C "$srcdir/$_srcname/SamTSE/"
44 chmod -R o=rx "$srcdir/$_srcname/SamTSE/Mods/ST8VI"
45 chmod -R g=rx "$srcdir/$_srcname/SamTSE/Mods/ST8VI"
46
47 # Making building scripts.
48 cd "$srcdir/$_srcname/Sources/"
49 sed -i 's/cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo/cmake -DCMAKE_BUILD_TYPE=Release/g' build-linux"$_bits".sh
50 sed 's/cmake -DCMAKE_BUILD_TYPE=Release/cmake -DTFE=FALSE -DCMAKE_BUILD_TYPE=Release/g' build-linux"$_bits".sh > build-linux"$_bits"-tse.sh
51
52 chmod 755 build-linux"$_bits"-tse.sh
53}
54
55build(){
56 # Building Serious Sam ST8VI.
57 cd "$srcdir/$_srcname/Sources/"
58 ./build-linux"$_bits"-tse.sh
59
60 mv "$srcdir/$_srcname/Sources/cmake-build/Debug/libGameMP.so" "$srcdir/$_srcname/SamTSE/Mods/ST8VI/Bin" || return 1
61 mv "$srcdir/$_srcname/Sources/cmake-build/Debug/libEntitiesMP.so" "$srcdir/$_srcname/SamTSE/Mods/ST8VI/Bin" || return 1
62
63 # Removing Serious Sam ST8VI tmp stuff.
64 cd "$srcdir/$_srcname/"
65 rm -fr "Sources"
66 rm -fr "Tools.Win32"
67
68 rm -f "$srcdir/$_srcname"/{*.sh,*.old,*.md}
69 rm -fr "$srcdir/$_srcname"/{Images,x32,x64}
70}
71
72package(){
73 # Making sure directories exist.
74 install -d $pkgdir/usr/lib/{serioussamse,serioussamse/Mods,serioussamse/Mods/ST8VI}
75 install -d $pkgdir/usr/share/{serioussamse,serioussamse/Mods}
76
77 install -D -m0755 $srcdir/$_srcname/SamTSE/Mods/ST8VI/Bin/libGameMP.so $pkgdir/usr/lib/serioussamse/Mods/ST8VI
78 install -D -m0755 $srcdir/$_srcname/SamTSE/Mods/ST8VI/Bin/libEntitiesMP.so $pkgdir/usr/lib/serioussamse/Mods/ST8VI
79
80 rm -fr "$srcdir/$_srcname/SamTSE/Mods/ST8VI/Bin"
81
82 # Making sure directories exist.
83 install -d $pkgdir/usr/share/licenses
84
85 # Install license.
86 install -D -m 644 $srcdir/$_srcname/LICENSE \
87 $pkgdir/usr/share/licenses/$pkgname/LICENSE
88 rm -f "$srcdir/$_srcname/LICENSE" || return 1
89
90 # Install data.
91 mv "$srcdir/$_srcname/SamTSE/Mods" "$pkgdir/usr/share/$pkginstdir/"
92}
93

Scan history

Scanned at (UTC)SeverityRules
2026-08-03 00:08:14 LOW 2
2026-08-02 00:16:08 LOW 2
2026-08-01 00:11:18 LOW 2
2026-07-31 00:14:10 LOW 2
2026-07-30 00:17:23 LOW 2
2026-07-29 00:25:53 LOW 2
2026-07-28 00:07:28 LOW 2
2026-07-27 00:24:32 LOW 2
2026-07-26 00:07:32 LOW 2
2026-07-25 00:13:44 LOW 2
2026-07-24 00:02:28 LOW 2
2026-07-23 00:14:47 LOW 2
2026-07-22 00:29:32 LOW 2
2026-07-21 00:24:15 LOW 2
2026-07-20 00:19:49 LOW 2
2026-07-19 00:17:08 LOW 2
2026-07-18 00:14:48 LOW 2
2026-07-17 00:06:16 LOW 2
2026-07-16 00:05:41 LOW 2
2026-07-15 00:09:25 LOW 2

Report a package

Reports go to the AURWatch maintainer (one person) and are read by hand. No login required.

0 / 4000
Your suggestion