wg-ratatui-tui-git
maintainer vsk11
· 0 votes
· scanned 2026-08-18 00:03:42.021799
LOW
View on AUR ↗
Why flagged
The package builds from source hosted in the maintainer's own Git repository with a SKIP'd checksum, but it is a legitimate Rust project build using standard cargo commands, and no untrusted prebuilt binaries or remote code execution are involved.
Triggered rules
LOW
Few votes, recently uploaded
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
LOW
AI review
llm_review
An AI model (qwen/qwen3-235b-a22b-2507) reviewed this and agrees it is LOW (confidence 95%): The package builds from source hosted in the maintainer's own Git repository with a SKIP'd checksum, but it is a legitimate Rust project build using standard cargo commands, and no untrusted prebuilt binaries or remote code execution are involved.
PKGBUILD
1
# Maintainer: vsk11-12
2
pkgname=wg-ratatui-tui-git
3
_pkgname=wg-ratatui-tui
4
pkgver=r7.0992ce2
5
pkgrel=1
6
pkgdesc="A WireGuard TUI interface built with Ratatui"
7
arch=('x86_64' 'aarch64')
8
url="https://github.com/vsk11-12/wg-ratatui-tui"
9
license=('MIT') # Change if your repo uses GPL-3.0, Apache-2.0, etc.
10
depends=('gcc-libs' 'glibc')
11
makedepends=('cargo' 'git')
12
provides=("${_pkgname}")
13
conflicts=("${_pkgname}")
14
source=("git+${url}.git")
15
sha256sums=('SKIP')
16
17
pkgver() {
18
cd "${_pkgname}"
19
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
20
}
21
22
prepare() {
23
cd "${_pkgname}"
24
export CARGO_HOME="${srcdir}/cargo-home"
25
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
26
}
27
28
build() {
29
cd "${_pkgname}"
30
export CARGO_HOME="${srcdir}/cargo-home"
31
cargo build --release --frozen
32
}
33
34
check() {
35
cd "${_pkgname}"
36
export CARGO_HOME="${srcdir}/cargo-home"
37
cargo test --frozen
38
}
39
40
package() {
41
cd "${_pkgname}"
42
install -Dm755 "target/release/${_pkgname}" "${pkgdir}/usr/bin/${_pkgname}"
43
44
# Installs license if a LICENSE file exists in the repository
45
install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE* 2>/dev/null || true
46
}
47
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-18 00:03:42 | LOW | 2 |
| 2026-08-17 00:18:29 | LOW | 2 |
| 2026-08-16 00:03:42 | LOW | 2 |
| 2026-08-15 00:26:13 | LOW | 2 |
| 2026-08-14 15:29:17 | LOW | 2 |