d77run
CLEAN
maintainer dani-77
0 votes
scanned 2026-09-27 00:07:07.510666
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 the maintainer's GitHub, which is normal for AUR packages; all files installed are built locally or are static assets, with no remote code execution or untrusted binaries.
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: Daniel Azevedo <daniazevedo77@posteo.net>
2
3
pkgname=d77run
4
pkgver=0.3.0
5
pkgrel=1
6
pkgdesc="Minimal GTK4 run-dialog launcher (a rejuvenation of gmrun), with .desktop icon rendering"
7
arch=('x86_64' 'aarch64')
8
url="https://github.com/dani-77/d77run"
9
license=('MIT')
10
depends=('gtk4' 'glib2' 'gcc-libs' 'glibc')
11
makedepends=('cargo')
12
source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
13
sha256sums=('48fa3ab623e03e02f9af0b3e026e0959352aaa279a74872237a5df3001346203')
14
15
prepare() {
16
cd "$pkgname-$pkgver"
17
export RUSTUP_TOOLCHAIN=stable
18
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
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
check() {
29
cd "$pkgname-$pkgver"
30
export RUSTUP_TOOLCHAIN=stable
31
cargo test --frozen --release
32
}
33
34
package() {
35
cd "$pkgname-$pkgver"
36
install -Dm755 target/release/d77run "$pkgdir/usr/bin/d77run"
37
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
38
install -Dm644 assets/d77run.desktop "$pkgdir/usr/share/applications/d77run.desktop"
39
install -Dm644 assets/d77run-icon.svg \
40
"$pkgdir/usr/share/icons/hicolor/scalable/apps/d77run.svg"
41
for size in 16 32 192 512; do
42
install -Dm644 "assets/d77run-icon-$size.png" \
43
"$pkgdir/usr/share/icons/hicolor/${size}x${size}/apps/d77run.png"
44
done
45
}
46
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-27 00:07:07 | Clean | 2 |
| 2026-09-26 23:16:08 | Low | 1 |