himorime-bin
The package downloads prebuilt binaries from GitHub releases, which is a common AUR practice; the source is verifiable and checksums are provided and checked, but the low vote count and recent upload warrant caution typical for new packages.
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 downloads prebuilt binaries from GitHub releases, which is a common AUR practice; the source is verifiable and checksums are provided and checked, but the low vote count and recent upload warrant caution typical for new packages.
PKGBUILD
# Maintainer: Rafael Dominiquini <rafaeldominiquini at gmail dot com>
_gitauthor=nao1215
_gitname=himorime
_appname=${_gitname}
pkgname=${_gitname}-bin
pkgdesc="Performance budgets and regression checks for CLIs from plain YAML"
pkgver=0.4.0
pkgrel=1
_gitversion=v${pkgver}
arch=('x86_64' 'aarch64')
_barch=('linux_amd64' 'linux_arm64')
_ghurl="https://github.com/${_gitauthor}/${_gitname}"
_ghurlraw="https://raw.githubusercontent.com/${_gitauthor}/${_gitname}/${_gitversion}"
url=${_ghurl}
license=('MIT')
provides=("${_appname}")
conflicts=("${pkgname%-bin}")
options=('!strip')
_pkgsrc="${_gitname}-${pkgver}"
source=("${_pkgsrc}-checksums.txt::${url}/releases/download/${_gitversion}/checksums.txt")
source_x86_64=("${_pkgsrc}-${arch[0]}.tgz::${url}/releases/download/${_gitversion}/${_pkgsrc//-/_}_${_barch[0]}.tar.gz")
source_aarch64=("${_pkgsrc}-${arch[1]}.tgz::${url}/releases/download/${_gitversion}/${_pkgsrc//-/_}_${_barch[1]}.tar.gz")
sha256sums=('8aeec652dd6921f97b92e4c40c847ac50097be3886d85eef33530abd20de3234')
sha256sums_x86_64=('45d58df979ed69552b8368b4a50fd70c84a41ac05f28048ffdaf0f14041cb8b1')
sha256sums_aarch64=('f486cb437d3f61ccb216370a5f38f518c46134f40d0f6c22530530ee5d2098d4')
verify() {
cp "${_pkgsrc}-checksums.txt" "checksums.txt"
sed -n \
-e "/${_pkgsrc//-/_}_${_barch[0]}.tar.gz/{s//${_pkgsrc}-${arch[0]}.tgz/g;p;}" \
-e "/${_pkgsrc//-/_}_${_barch[1]}.tar.gz/{s//${_pkgsrc}-${arch[1]}.tgz/g;p;}" \
-i "checksums.txt"
sha256sum -c --ignore-missing "checksums.txt"
}
build() {
cd "${srcdir}/" || exit
mkdir -p "./completions"
"./${_appname}" completion zsh > "./completions/${_appname}.zsh"
"./${_appname}" completion bash > "./completions/${_appname}.bash"
}
package() {
cd "${srcdir}/" || exit
install -Dm755 "${_appname}" "${pkgdir}/usr/bin/${_appname}"
install -Dm644 "./completions/${_appname}.zsh" "${pkgdir}/usr/share/zsh/site-functions/_${_appname}"
install -Dm644 "./completions/${_appname}.bash" "${pkgdir}/usr/share/bash-completion/completions/${_appname}"
install -Dm644 "README.md" "${pkgdir}/usr/share/doc/${pkgname}/README.md"
install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-20 07:32:26 | Low | 2 |