wlapse
CLEAN
maintainer cat_nm
0 votes
scanned 2026-09-02 00:02:31.333316
Triggered rules
Clean
AI review downgraded a static finding
llm_review
The static rules flagged this LOW, but an AI model (qwen/qwen3-235b-a22b-2507) reviewed the full PKGBUILD and judged it CLEAN (confidence 95%): The package builds from source hosted on GitHub at the project's own repository, uses a verifiable checksum, and installs only the resulting binary, license, and documentation; no remote code execution or untrusted prebuilt binaries are involved.
1 higher static finding superseded - not the current verdict (shown for transparency)
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.
PKGBUILD
1
# Maintainer: cat_nm
2
3
pkgname=wlapse
4
pkgver=0.1.0
5
pkgrel=1
6
pkgdesc='A lightweight stopwatch overlay for Wayland'
7
arch=('x86_64')
8
url='https://github.com/fib-nm/wlapse'
9
license=('MIT')
10
depends=('gcc-libs' 'glibc')
11
makedepends=('cargo')
12
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz")
13
sha256sums=('6cb7167849f7623d4815f4da31e9e6fba8936e0bd9003e34992c26e2432d13f4')
14
15
prepare() {
16
cd "$pkgname-$pkgver"
17
export RUSTUP_TOOLCHAIN=stable
18
cargo fetch --locked --target x86_64-unknown-linux-gnu
19
}
20
21
build() {
22
cd "$pkgname-$pkgver"
23
export RUSTUP_TOOLCHAIN=stable
24
export CARGO_TARGET_DIR=target
25
cargo build --frozen --release
26
}
27
28
package() {
29
cd "$pkgname-$pkgver"
30
install -Dm755 target/release/wlapse "$pkgdir/usr/bin/wlapse"
31
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
32
install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
33
}
34
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-02 00:02:31 | Clean | 2 |
| 2026-09-01 21:49:23 | Low | 1 |