lito-bin
CLEAN
maintainer Dominiquini
1 votes
scanned 2026-09-24 00:24:14.291944
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 are checksummed and installed; the source is trustworthy and the build process is transparent.
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=litocpp
4
_gitname=lito
5
_appname=${_gitname}
6
pkgname=${_appname}-bin
7
pkgdesc="Module-first C++ build tool with manifest."
8
9
pkgver=0.8.3
10
pkgrel=1
11
_gitversion=v${pkgver}
12
13
arch=('x86_64' 'aarch64')
14
_barch=('linux-x86_64' 'linux-aarch64')
15
16
_ghurl="https://github.com/${_gitauthor}/${_gitname}"
17
_ghurlraw="https://raw.githubusercontent.com/${_gitauthor}/${_gitname}/${_gitversion}"
18
url=${_ghurl}
19
20
license=('MIT' 'Apache-2.0')
21
22
provides=("${_appname}")
23
conflicts=("${pkgname%-bin}")
24
25
depends=('glibc' 'libgcc' 'zstd' 'gcc' 'lua')
26
27
options=('!strip')
28
29
source=("README-${pkgver}.md::${_ghurlraw}/README.md")
30
source_x86_64=("${_appname}-${arch[0]}-${pkgver}.tgz::${_ghurl}/releases/download/${_gitversion}/${_gitname}-${_gitversion}-${_barch[0]}.tar.gz")
31
source_aarch64=("${_appname}-${arch[1]}-${pkgver}.tgz::${_ghurl}/releases/download/${_gitversion}/${_gitname}-${_gitversion}-${_barch[1]}.tar.gz")
32
sha256sums=('5ac09bfe493443b79e86f98dea6b46141503946d35117fea2647cbd3f2a297c9')
33
sha256sums_x86_64=('75566a6dfaa255b4d2f51f394dda3d2922a782e32267f218b45d109a3a7b6b73')
34
sha256sums_aarch64=('e49cec3dce217e9e8fd32ad921bd9d05997c44437485a59e8fb6eb2420d71f63')
35
36
37
case ${CARCH} in
38
${arch[0]})
39
_CARCH=${_barch[0]}
40
;;
41
42
${arch[1]})
43
_CARCH=${_barch[1]}
44
;;
45
esac
46
47
package() {
48
cd "${srcdir}/${_gitname}-${_gitversion}-${_CARCH}/"
49
50
install -Dm755 bin/${_appname} -t "${pkgdir}/usr/bin/"
51
52
install -Dm644 share/${_appname}/*.schema* -t "${pkgdir}/usr/share/${_appname}/"
53
54
install -Dm644 ../README-${pkgver}.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
55
56
install -Dm644 share/licenses/${_appname}/LICENSE* -t "${pkgdir}/usr/share/licenses/${pkgname}/"
57
}
58
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-24 00:24:14 | Clean | 2 |
| 2026-09-23 07:39:45 | Low | 1 |