sublime-keygen-git
The package builds a cross-platform keygen from its own public Git repository using Zig; while the purpose is potentially for license circumvention, it does not execute untrusted remote code or install prebuilt binaries from ambiguous sources.
Triggered rules
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
llm_review
An AI model (qwen/qwen3-235b-a22b-2507) reviewed this and agrees it is LOW (confidence 95%): The package builds a cross-platform keygen from its own public Git repository using Zig; while the purpose is potentially for license circumvention, it does not execute untrusted remote code or install prebuilt binaries from ambiguous sources.
PKGBUILD
# Maintainer: Mike Lei <mikelei@duck.com>
pkgname=sublime-keygen-git
pkgver=1.0.r4.g6e0dc44
pkgrel=1
pkgdesc="Cross-platform KEYGEN for Sublime products"
arch=("x86_64" "aarch64")
url="https://github.com/Antibioticss/sublime-keygen"
license=("MIT")
depends=()
makedepends=("git" "zig")
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=("git+$url.git")
sha256sums=("SKIP")
pkgver() {
cd "$srcdir/${pkgname%-git}"
git describe --long --tags --abbrev=7 | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
prepare() {
cd "$srcdir/${pkgname%-git}"
sed -i -r '/\.os_tag = \.(macos|windows),/d' build.zig
sed -i '/\.cpu_arch = \.'$([[ $CARCH == x86_64 ]] && echo aarch64 || echo x86_64)',/d' build.zig
}
build() {
cd "$srcdir/${pkgname%-git}"
zig build -Doptimize=ReleaseSmall
}
package() {
install -Dm755 "$srcdir/${pkgname%-git}/zig-out/$CARCH-linux-musl/subkg" "$pkgdir/usr/bin/subkg"
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-17 00:27:14 | Low | 2 |
| 2026-09-16 23:24:19 | Low | 2 |