ratfetch-bin
LOW
maintainer Dominiquini
1 votes
scanned 2026-09-01 05:47:12.474482
Why flagged
The package downloads prebuilt binaries from GitHub releases, which is a common but less trustworthy practice; however, the sources are from the project's official repository with verifiable checksums, reducing risk.
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 downloads prebuilt binaries from GitHub releases, which is a common but less trustworthy practice; however, the sources are from the project's official repository with verifiable checksums, reducing risk.
PKGBUILD
1
# Maintainer: Rafael Dominiquini <rafaeldominiquini at gmail dot com>
2
3
_gitauthor=tuna4ll
4
_gitname=ratfetch
5
_appname=${_gitname}
6
pkgname=${_appname}-bin
7
pkgdesc="A system fetch that does not stop at one frame"
8
9
pkgver=0.1.0
10
pkgrel=1
11
_gitversion=v${pkgver}
12
13
arch=('x86_64' 'aarch64')
14
_barch=('x86_64-unknown-linux-gnu' 'aarch64-unknown-linux-gnu')
15
16
_ghurl="https://github.com/${_gitauthor}/${_gitname}"
17
_ghurlraw="https://raw.githubusercontent.com/${_gitauthor}/${_gitname}/${_gitversion}"
18
url=${_ghurl}
19
20
license=('MIT')
21
22
provides=("${_appname}")
23
conflicts=("${pkgname%-bin}")
24
25
depends=('glibc' 'libgcc')
26
27
options=('!strip')
28
29
source_x86_64=("${_appname}-${arch[0]}-${pkgver}.tgz::${_ghurl}/releases/download/${_gitversion}/${_gitname}-${_gitversion}-${_barch[0]}.tar.gz")
30
source_aarch64=("${_appname}-${arch[1]}-${pkgver}.tgz::${_ghurl}/releases/download/${_gitversion}/${_gitname}-${_gitversion}-${_barch[1]}.tar.gz")
31
sha256sums_x86_64=('f293949180efa9150a9ee9a914f67fc4f08bc295b631c02181597252b99e13eb')
32
sha256sums_aarch64=('911eb55cc9fc660959c6484d0191ac874a40a575dcce8adb46744322465c8295')
33
34
35
case ${CARCH} in
36
${arch[0]})
37
_CARCH=${_barch[0]}
38
;;
39
40
${arch[1]})
41
_CARCH=${_barch[1]}
42
;;
43
esac
44
45
package() {
46
cd "${srcdir}/${_gitname}-${_gitversion}-${_CARCH}/" || exit
47
48
install -Dm755 "${_appname}" -t "${pkgdir}/usr/bin/"
49
50
install -Dm644 "config.example.toml" -t "${pkgdir}/usr/share/doc/${pkgname}/config/"
51
52
install -Dm644 "README.md" -t "${pkgdir}/usr/share/doc/${pkgname}/"
53
54
install -Dm644 "LICENSE" -t "${pkgdir}/usr/share/licenses/${pkgname}/"
55
}
56
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-01 05:47:12 | Low | 2 |