openusage.sh

LOW
maintainer y0uCeF 0 votes scanned 2026-09-22 17:38:46.328100
View on AUR
Why flagged

The package installs a prebuilt binary from the project's official GitHub release, which is a normal practice; the low severity is due to unverifiable origin of the binary, but no malicious behavior is evident.

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 installs a prebuilt binary from the project's official GitHub release, which is a normal practice; the low severity is due to unverifiable origin of the binary, but no malicious behavior is evident.

PKGBUILD

1# Maintainer: Youcef <youcef.nafa@gmail.com>
2
3pkgname=openusage.sh
4pkgver=0.25.0
5pkgrel=1
6pkgdesc='Terminal-first local quota and usage tracking dashboard for AI coding tools'
7arch=('x86_64')
8url='https://github.com/janekbaraniewski/openusage'
9license=('MIT')
10depends=('glibc')
11source=("https://github.com/janekbaraniewski/openusage/releases/download/v${pkgver}/openusage_${pkgver}_linux_amd64.tar.gz")
12sha256sums=('5013e4b6bb6f120d53f4d35e74a273787b0ad2b26868c927657f7b3ec9dad68f')
13
14prepare() {
15 cd "$srcdir"
16 # Nothing to do — upstream ships a prebuilt binary.
17 # Verify the expected files exist before proceeding.
18 [[ -f openusage ]] || { echo "error: openusage binary not found in source" >&2; return 1; }
19}
20
21build() {
22 cd "$srcdir"
23 # Prebuilt binary — no compilation needed.
24 # Ensure it is executable in case the tarball permissions are off.
25 chmod +x openusage
26}
27
28package() {
29 cd "$srcdir"
30
31 # Main binary
32 install -Dm755 openusage "$pkgdir/usr/bin/openusage"
33
34 # Documentation
35 install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
36 install -Dm644 configs/example_settings.json "$pkgdir/usr/share/doc/$pkgname/example_settings.json"
37
38 # License (MIT)
39 install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
40}
41

Scan history

Scanned at (UTC)SeverityRules
2026-09-22 17:38:46 Low 2

Report a package

Reports go to the AURWatch maintainer (one person) and are read by hand. No login required.

0 / 4000
Your suggestion