vintagestory-unstable
maintainer Damgaldor
· 3 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The source is a prebuilt Linux client tarball from the game's official CDN, which is a non-whitelisted but project-owned host; the worst case of a swapped artifact would be code execution, but the source is directly from the project's official infrastructure, making it a standard AUR package with low risk.
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 source is a prebuilt Linux client tarball from the game's official CDN, which is a non-whitelisted but project-owned host; the worst case of a swapped artifact would be code execution, but the source is directly from the project's official infrastructure, making it a standard AUR package with low risk.
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:22
source=("https://cdn.vintagestory.at/gamefiles/$_release/vs_client_linux-x64_$_pkgver.tar.gz"
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: Damglador <damglador@gmail.com>
2
# Thanks to copygirl for the main vintagestory packages, which this one is based on
3
4
pkgname=vintagestory-unstable
5
_pkgname=vintagestory
6
7
# _release is the version's release type, commonly "stable" for normal releases,
8
# "unstable" for release candidates and "pre" for testing releases before big updates.
9
_release=unstable
10
# _pkgver is separate to allow specifying pre-release versions such as "-rc.1".
11
_pkgver=1.22.0-rc.10
12
13
# makepkg doesn't support hyphens in pkgver, so we'll strip them as per `vercmp`.
14
pkgver=${_pkgver//-/}
15
pkgrel=1
16
pkgdesc="Uncompromising wilderness survival sandbox game (unstable branch)"
17
arch=("x86_64")
18
url="https://www.vintagestory.at/"
19
license=("custom")
20
depends=("dotnet-runtime-10.0" "opengl-driver" "openal" "glibc>=2.34")
21
options=("!strip" "!debug")
22
source=("https://cdn.vintagestory.at/gamefiles/$_release/vs_client_linux-x64_$_pkgver.tar.gz"
23
# "https://account.vintagestory.at/files/$_release/vs_client_linux-x64_$_pkgver.tar.gz" (alternative source)
24
"$_pkgname.desktop"
25
"vsmodinstall-handler.desktop"
26
"font.conf")
27
md5sums=('aae5e6e8d0f379724538d2058494b9a8'
28
'09b467a592b34410933b457c262df0f2'
29
'f086616f754a92eb4c39889d43abffd5'
30
'9912e111cef7077cab433290c9995b6f')
31
32
prepare() {
33
# Remove install script provided by developers
34
rm vintagestory/install.sh
35
# Create symbolic links for any assets (excluding fonts) containing non-lowercase letters
36
# Some asset files might include uppercase letters, but the game expects them to be lowercase
37
find vintagestory/assets/ -not -path "*/fonts/*" -regex ".*/.*[A-Z].*" | while read -r file; do
38
local filename="$(basename -- "$file")"
39
ln -sf "$filename" "${file%/*}"/"${filename,,}"
40
done
41
}
42
43
package() {
44
# Copy application icon and .desktop files
45
install -Dm644 vintagestory/assets/gameicon.png "$pkgdir"/usr/share/pixmaps/"$pkgname".png
46
install -Dm644 vintagestory.desktop "$pkgdir"/usr/share/applications/"$pkgname".desktop
47
install -Dm644 vsmodinstall-handler.desktop "$pkgdir"/usr/share/applications/"$pkgname"-modinstall-handler.desktop
48
49
# Copy all other application files (`/opt` is the right place to dump this)
50
install -dm 755 "$pkgdir"/opt # Create directory first (required)
51
cp -r --preserve=mode vintagestory "$pkgdir"/opt/"$pkgname"
52
53
# Override `font.conf` provided by the game, as it is useless
54
install -Dm644 font.conf "$pkgdir"/opt/"$pkgname"/font.conf
55
56
# Create a symlink to run the launch script from terminal
57
install -dm 755 "$pkgdir"/usr/bin # Create directory first (required)
58
ln -s /opt/"$pkgname"/run.sh "$pkgdir"/usr/bin/"$pkgname"
59
}
60
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 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 |