hyprcube
CLEAN
maintainer maravexa
0 votes
scanned 2026-09-03 00:15:47.366177
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 a verifiable source tarball hosted on the author's GitHub repository, uses standard Rust build practices, and installs only the compiled binary, license, and documentation; no remote code execution or untrusted payloads 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: Mara Vexa <me@maravexa.com>
2
pkgname=hyprcube
3
pkgver=0.1.0
4
pkgrel=1
5
pkgdesc="A Wayland-native settings application for Hyprland"
6
arch=('x86_64')
7
url="https://github.com/maravexa/hyprcube"
8
license=('MIT')
9
depends=(
10
'fontconfig'
11
'git'
12
'libxkbcommon'
13
'wayland'
14
)
15
makedepends=(
16
'cargo'
17
'rust'
18
)
19
optdepends=(
20
'hyprdeck: HyprDeck settings integration'
21
'hyprland: live preview, monitor control, and reload support'
22
'hyprpaper: per-monitor wallpaper management and live apply'
23
'hyprsaver: HyprSaver settings integration'
24
)
25
source=("$pkgname-$pkgver.tar.gz::https://github.com/maravexa/hyprcube/archive/v$pkgver.tar.gz")
26
# Replace with `updpkgsums` after the release tag is available.
27
sha256sums=('c9a7a53222c777575375a13bac96635bc72156ab7e7e0039d855ac0cc01bb649')
28
29
prepare() {
30
cd "$pkgname-$pkgver"
31
export RUSTUP_TOOLCHAIN=stable
32
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
33
}
34
35
build() {
36
cd "$pkgname-$pkgver"
37
export RUSTUP_TOOLCHAIN=stable
38
cargo build --release --locked -p hyprcube
39
}
40
41
package() {
42
cd "$pkgname-$pkgver"
43
install -Dm755 target/release/hyprcube "$pkgdir/usr/bin/hyprcube"
44
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
45
install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
46
}
47
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-03 00:15:47 | Clean | 2 |
| 2026-09-02 21:51:32 | Low | 1 |