hyprkeys-git-bin
maintainer amilcarnebot
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package builds from a public Git repository owned by the maintainer, which is normal for AUR packages; the use of 'sudo' in build() is unusual but points to a local script ('generator') included in the source, not remote code execution.
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 a public Git repository owned by the maintainer, which is normal for AUR packages; the use of 'sudo' in build() is unusual but points to a local script ('generator') included in the source, not remote code execution.
PKGBUILD
1
# Maintainer: olalbns <olalbns@gmail.com>
2
pkgname=hyprkeys-git-bin
3
_pkgname=HyprKeys
4
pkgver=r5.gd632813
5
pkgrel=1
6
pkgdesc='GTK explorer and editor for Hyprland keyboard shortcuts'
7
arch=('any')
8
url='https://github.com/olalbns/HyprKeys'
9
license=('MIT')
10
depends=('python' 'python-gobject' 'gtk4')
11
makedepends=('git' 'python-build' 'python-installer' 'python-setuptools' 'python-wheel')
12
provides=('hyprkeys')
13
conflicts=('hyprkeys')
14
source=("hyprkeys-git-bin::git+${url}.git" 'generator')
15
sha256sums=('SKIP')
16
17
pkgver() {
18
cd "${srcdir}/hyprkeys-git-bin"
19
printf 'r%s.g%s' "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
20
}
21
22
build() {
23
sudo "$srcdir/generator"
24
cd "${srcdir}/hyprkeys-git-bin"
25
python -m build --wheel --no-isolation
26
}
27
28
package() {
29
cd "${srcdir}/hyprkeys-git-bin"
30
python -m installer --destdir="${pkgdir}" dist/*.whl
31
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/hyprkeys-git-bin/LICENSE"
32
}
33
34
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 13:20:32 | LOW | 2 |