pudu-launcher-git
maintainer gillesgillespie
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The npx tauri build command is used to build the project from its own source code, which is checked out from the project's official Git repository; this is a normal part of the build process for Tauri-based applications and does not execute arbitrary remote code.
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 90%): The npx tauri build command is used to build the project from its own source code, which is checked out from the project's official Git repository; this is a normal part of the build process for Tauri-based applications and does not execute arbitrary remote code.
1 higher static finding superseded - not the current verdict (shown for transparency)
MEDIUM
npx/bunx/deno executes a remote package
remote_code_tool
`npx`/`bunx`/`pnpm dlx`/`deno run <url>` downloads AND runs a remote package at build time — the moral equivalent of piping a download into a shell. Severity downgraded: Node.js consumer context.
-
PKGBUILD:64
npx tauri build -b deb
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer:
2
pkgname=pudu-launcher-git
3
pkgver=r12.d57587d
4
pkgrel=2
5
pkgdesc="Alternative game launcher for Unitystation"
6
arch=('x86_64')
7
url="https://github.com/corp-0/PuduLauncher"
8
license=('MIT')
9
depends=(
10
'cairo'
11
'desktop-file-utils'
12
'gdk-pixbuf2'
13
'glib2'
14
'gtk3'
15
'hicolor-icon-theme'
16
'libsoup3'
17
'openssl'
18
'pango'
19
'webkit2gtk-4.1'
20
)
21
makedepends=(
22
'clang'
23
'dotnet-sdk-10.0'
24
'git'
25
'libappindicator-gtk3'
26
'librsvg'
27
'nodejs'
28
'npm'
29
'patchelf'
30
'rust'
31
'zlib'
32
)
33
install=pudu-launcher.install
34
provides=('pudu-launcher')
35
conflicts=('pudu-launcher')
36
options=(!lto) # ring crate's assembly objects break with Arch's system-wide -flto
37
source=("git+${url}.git")
38
sha256sums=('SKIP')
39
40
pkgver() {
41
cd PuduLauncher
42
( set -o pipefail
43
git describe --long --abbrev=7 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
44
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
45
)
46
}
47
48
prepare() {
49
cd PuduLauncher
50
git submodule update --init --recursive
51
# `generate-ts` runs `dotnet build -c Debug`; keep AOT/trim for release publish only.
52
sed -i "s|<PublishAot>true</PublishAot>|<PublishAot Condition=\"'\\\$(Configuration)' == 'Release'\">true</PublishAot>|" src-dotnet/PuduLauncher/PuduLauncher.csproj
53
sed -i "s|<PublishTrimmed>true</PublishTrimmed>|<PublishTrimmed Condition=\"'\\\$(Configuration)' == 'Release'\">true</PublishTrimmed>|" src-dotnet/PuduLauncher/PuduLauncher.csproj
54
# Disable signed updater artifacts - AUR users don't have the private key
55
sed -i 's/"createUpdaterArtifacts": true/"createUpdaterArtifacts": false/' src-tauri/tauri.conf.json
56
npm ci
57
}
58
59
build() {
60
cd PuduLauncher
61
export DOTNET_CLI_TELEMETRY_OPTOUT=1
62
export DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1
63
export AllowMissingPrunePackageData=true
64
npx tauri build -b deb
65
}
66
67
package() {
68
cd "${srcdir}/PuduLauncher/src-tauri/target/release/bundle/deb"
69
cp -a pudu-launcher_*/data/usr "${pkgdir}/"
70
}
71
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 |