asm-top-git
LOW
maintainer kekmacska
0 votes
scanned 2026-08-20 00:05:13.298181
Why flagged
The package builds from the project's own source via git, which is normal for AUR; the low severity is due to few votes and recent upload, not malicious content.
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 the project's own source via git, which is normal for AUR; the low severity is due to few votes and recent upload, not malicious content.
PKGBUILD
1
# Maintainer: kekmacska
2
3
pkgname=asm-top-git
4
pkgver=0.3.1.r4.gf04e1cf
5
pkgrel=1
6
pkgdesc="A lightweight system monitoring tool written in pure x86-64 assembly for Linux. (similiar to top command just without processes)"
7
arch=('x86_64')
8
url="https://github.com/c0m4r/asm-top"
9
license=('CC0-1.0')
10
makedepends=('nasm' 'make')
11
source=('git+https://github.com/c0m4r/asm-top.git')
12
sha256sums=('SKIP')
13
14
pkgver() {
15
cd "${pkgname%-*}"
16
git describe --long --tags | sed -r 's/([^-]*-g)/r\1/;s/-/./g;s/v//g'
17
}
18
19
build() {
20
cd "${pkgname%-*}"
21
# extra optimization flags are kinda pointless in assembly
22
make -j$(nproc)
23
}
24
25
package() {
26
cd "${pkgname%-*}"
27
28
#binary
29
install -Dm755 "${pkgname%-*}" "$pkgdir/usr/bin/${pkgname%-*}"
30
31
#license
32
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
33
}
34
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-20 00:05:13 | Low | 2 |
| 2026-08-19 21:42:23 | Low | 2 |