z85-bin
maintainer nirvam
· 0 votes
· scanned 2026-08-18 00:03:42.021799
LOW
View on AUR ↗
Why flagged
The package installs a prebuilt binary from the project's official GitHub releases, which is normal for Rust CLI tools; the source is verifiable via checksums and poses no active execution risk during install.
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 installs a prebuilt binary from the project's official GitHub releases, which is normal for Rust CLI tools; the source is verifiable via checksums and poses no active execution risk during install.
PKGBUILD
1
# Maintainer: Marvin Zhang <marvin.beeblebrox@gmail.com>
2
pkgname=z85-bin
3
pkgver=0.1.0
4
pkgrel=1
5
pkgdesc="A base64-compatible Z85 CLI tool written in Rust (pre-built binary)"
6
arch=(x86_64 aarch64)
7
url="https://github.com/nirvam/z85"
8
license=(MIT)
9
depends=(gcc-libs)
10
provides=(z85)
11
conflicts=(z85)
12
options=(!debug)
13
14
source_x86_64=("$pkgname-$pkgver-x86_64.tar.gz::$url/releases/download/v$pkgver/z85-v$pkgver-x86_64-unknown-linux-gnu.tar.gz")
15
source_aarch64=("$pkgname-$pkgver-aarch64.tar.gz::$url/releases/download/v$pkgver/z85-v$pkgver-aarch64-unknown-linux-gnu.tar.gz")
16
17
sha256sums_x86_64=(30753e714e7312ab51b8c2c879f2bd6d45639f377addf490e41328635d02007f)
18
sha256sums_aarch64=(fb05eb4af24384a1c11b691c2cb76b4a1fc20d7ec4a75ae87ee78a81a3c5648c)
19
20
package() {
21
install -Dm755 "$srcdir/z85" "$pkgdir/usr/bin/z85"
22
install -Dm644 "$srcdir/z85.1" "$pkgdir/usr/share/man/man1/z85.1"
23
install -Dm644 "$srcdir/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
24
25
# Shell completions
26
install -Dm644 "$srcdir/completions/bash/z85" "$pkgdir/usr/share/bash-completion/completions/z85"
27
install -Dm644 "$srcdir/completions/zsh/_z85" "$pkgdir/usr/share/zsh/site-functions/_z85"
28
install -Dm644 "$srcdir/completions/fish/z85.fish" "$pkgdir/usr/share/fish/vendor_completions.d/z85.fish"
29
}
30
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-18 00:03:42 | LOW | 2 |
| 2026-08-17 00:18:29 | LOW | 2 |
| 2026-08-16 00:03:42 | LOW | 2 |
| 2026-08-15 00:26:13 | LOW | 2 |
| 2026-08-14 11:29:14 | LOW | 2 |