zzzsleep-bin
maintainer irammini
· 0 votes
· scanned 2026-08-18 09:39:35.720982
LOW
View on AUR ↗
Why flagged
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
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.
PKGBUILD
1
# Maintainer: CodeTease
2
pkgname=zzzsleep-bin
3
pkgver=0.2.0
4
pkgrel=1
5
pkgdesc="A fancy sleep command written in Rust 💤"
6
url="https://github.com/CodeTease/zzz"
7
license=('MIT')
8
options=(!strip !debug)
9
provides=('zzzsleep')
10
conflicts=('zzzsleep')
11
arch=()
12
arch+=('x86_64')
13
source_x86_64=("${url}/releases/download/v${pkgver}/zzz-${pkgver}-x86_64-unknown-linux-gnu.tar.gz")
14
sha256sums_x86_64=('26bcbf3a749911d9ed84831f52ac8dfa39840f313056df09f4e80aa9d6c4f1b2')
15
arch+=('aarch64')
16
source_aarch64=("${url}/releases/download/v${pkgver}/zzz-${pkgver}-aarch64-unknown-linux-gnu.tar.gz")
17
sha256sums_aarch64=('42d5bb60fcdff0bb59f83533c6cda8403822470050f8fc3ebcc0a0b63d69eda7')
18
19
package() {
20
local bin_path=$(find "$srcdir" -type f -name "zzz" -executable | head -n 1)
21
22
if [ -n "$bin_path" ]; then
23
install -Dm755 "$bin_path" "${pkgdir}/usr/bin/zzz"
24
else
25
echo "Error: Binary zzz not found in $srcdir"
26
return 1
27
fi
28
29
local license_path=$(find "$srcdir" -type f -name "LICENSE" | head -n 1)
30
if [ -n "$license_path" ]; then
31
install -Dm644 "$license_path" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
32
fi
33
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-18 09:39:35 | LOW | 1 |
| 2026-08-18 00:03:42 | CLEAN | 2 |
| 2026-08-17 03:35:16 | LOW | 1 |