spoo-cli-bin
CLEAN
maintainer Dominiquini
1 votes
scanned 2026-08-30 00:04:14.825026
Triggered rules
Clean
AI review downgraded a static finding
llm_review
The static rules flagged this LOW, but an AI model (qwen/qwen3-235b-a22b-2507) reviewed the full PKGBUILD and judged it CLEAN (confidence 95%): The package downloads prebuilt binaries from the project's official GitHub releases, which is a normal and trusted source for AUR binary packages; checksums are provided and the content consists of a CLI tool with associated completions and documentation, posing no evident risk.
1 higher static finding superseded - not the current verdict (shown for transparency)
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: Rafael Dominiquini <rafaeldominiquini at gmail dot com>
2
3
_gitauthor=spoo-me
4
_gitname=spoo-cli
5
_appname=${_gitname%-cli}
6
pkgname=${_gitname}-bin
7
pkgdesc="Official spoo.me CLI to shorten links and view analytics from your terminal"
8
9
pkgver=0.4.1
10
pkgrel=1
11
_gitversion=v${pkgver}
12
13
arch=('x86_64' 'aarch64')
14
_barch=('linux_amd64' 'linux_arm64')
15
16
_ghurl="https://github.com/${_gitauthor}/${_gitname}"
17
_ghurlraw="https://raw.githubusercontent.com/${_gitauthor}/${_gitname}/${_gitversion}"
18
url=${_ghurl}
19
20
license=('Apache-2.0')
21
22
provides=("${_appname}")
23
conflicts=("${pkgname%-bin}")
24
25
options=('!strip')
26
27
source_x86_64=("${_appname}-${arch[0]}-${pkgver}.tgz::${_ghurl}/releases/download/${_gitversion}/${_appname}_${pkgver}_${_barch[0]}.tar.gz")
28
source_aarch64=("${_appname}-${arch[1]}-${pkgver}.tgz::${_ghurl}/releases/download/${_gitversion}/${_appname}_${pkgver}_${_barch[1]}.tar.gz")
29
sha256sums_x86_64=('f0ad937ec5b80a66280a097a69f2d6fe51df27f59d4a686998249e945aaa24bb')
30
sha256sums_aarch64=('07fdd1761a11e09ab76a3359bf26b54d7be224c0746a6d05890a42429830a2f1')
31
32
33
package() {
34
cd "${srcdir}/" || exit
35
36
install -Dm755 "${_appname}" "${pkgdir}/usr/bin/${_appname}"
37
38
install -D -m644 "completions/${_appname}.bash" "${pkgdir}/usr/share/bash-completion/completions/${_appname}"
39
install -D -m644 "completions/${_appname}.zsh" "${pkgdir}/usr/share/zsh/site-functions/_${_appname}"
40
install -D -m644 "completions/${_appname}.fish" "${pkgdir}/usr/share/fish/vendor_completions.d/${_appname}.fish"
41
42
install -Dm644 "README.md" "${pkgdir}/usr/share/doc/${pkgname}/README.md"
43
44
install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
45
}
46
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-30 00:04:14 | Clean | 2 |
| 2026-08-29 23:41:07 | Low | 1 |