pave-git
maintainer eaholum
· 1 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The npx command runs 'tauri build' which is part of the project's build process using locally installed tools; it does not execute arbitrary remote code, and the source is from the project's own repository.
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 command runs 'tauri build' which is part of the project's build process using locally installed tools; it does not execute arbitrary remote code, and the source is from the project's own repository.
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:41
npx tauri build -b deb
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: eaholum
2
pkgname=pave-git
3
pkgver=0.1.0.r0.g0000000
4
pkgrel=1
5
pkgdesc="Smart window tiling manager for KDE/KWin"
6
arch=('x86_64')
7
url="https://github.com/TheVisher/Pave"
8
license=('MIT')
9
depends=(
10
'webkit2gtk-4.1'
11
'gtk3'
12
'libayatana-appindicator'
13
'dbus'
14
'procps-ng'
15
)
16
makedepends=(
17
'git'
18
'rust'
19
'cargo'
20
'nodejs'
21
'npm'
22
)
23
provides=('pave')
24
conflicts=('pave')
25
source=("${pkgname}::git+https://github.com/TheVisher/Pave.git")
26
sha256sums=('SKIP')
27
28
pkgver() {
29
cd "$pkgname"
30
if git describe --long --tags --abbrev=7 2>/dev/null; then
31
git describe --long --tags --abbrev=7 | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
32
else
33
printf "0.1.0.r%s.g%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
34
fi
35
}
36
37
build() {
38
cd "$pkgname"
39
export RUSTUP_TOOLCHAIN=stable
40
npm ci
41
npx tauri build -b deb
42
}
43
44
package() {
45
cd "$pkgname"
46
47
# Binary
48
install -Dm755 "src-tauri/target/release/pave" "$pkgdir/usr/bin/pave"
49
50
# Desktop file
51
install -Dm644 "pave.desktop" "$pkgdir/usr/share/applications/pave.desktop"
52
53
# Icons
54
install -Dm644 "src-tauri/icons/32x32.png" "$pkgdir/usr/share/icons/hicolor/32x32/apps/pave.png"
55
install -Dm644 "src-tauri/icons/128x128.png" "$pkgdir/usr/share/icons/hicolor/128x128/apps/pave.png"
56
install -Dm644 "src-tauri/icons/128x128@2x.png" "$pkgdir/usr/share/icons/hicolor/256x256/apps/pave.png"
57
install -Dm644 "src-tauri/icons/icon.png" "$pkgdir/usr/share/icons/hicolor/512x512/apps/pave.png"
58
59
# License
60
install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
61
}
62
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 |