quotracker-bin

MEDIUM
maintainer oioi555 0 votes scanned 2026-09-15 15:19:57.334228
View on AUR
Why flagged

The package downloads a prebuilt .deb binary from a GitHub release without source verification, posing a supply-chain risk if the release asset were swapped.

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.

Medium AI review of an ambiguous pattern llm_review

The static rules found a suspicious pattern they could not resolve, so an AI model (qwen/qwen3-235b-a22b-2507) reviewed it and judged it MEDIUM (confidence 90%): The package downloads a prebuilt .deb binary from a GitHub release without source verification, posing a supply-chain risk if the release asset were swapped.

PKGBUILD

1# Maintainer: oioi555 <oioi555x@gmail.com>
2# AUR package: unpacks the GitHub Release .deb.
3# Local source builds use ../PKGBUILD (quotracker-git), not this file.
4
5pkgname=quotracker-bin
6pkgver=0.1.1
7pkgrel=1
8pkgdesc="Linux desktop app for planning AI coding quotas around the 5-hour window"
9arch=('x86_64')
10url="https://github.com/oioi555/quotracker"
11license=('MIT')
12provides=('quotracker')
13conflicts=('quotracker')
14depends=('webkit2gtk-4.1' 'gtk3')
15options=('!strip' '!debug')
16source=("https://github.com/oioi555/quotracker/releases/download/v0.1.1/Quotracker_0.1.1_amd64.deb")
17sha256sums=('339311d9a17b08428a2968767960a7a4fe1aed23887ae44a6ca914777058e622')
18noextract=("${source[0]##*/}")
19
20package() {
21 local data_archive
22 bsdtar -xf "${srcdir}"/*.deb
23 data_archive="$(printf '%s\n' data.tar.* | head -n 1)"
24 if [[ ! -f "${data_archive}" ]]; then
25 echo "data.tar archive not found in .deb" >&2
26 return 1
27 fi
28 bsdtar -xf "${data_archive}" -C "${pkgdir}"
29}
30

Scan history

Scanned at (UTC)SeverityRules
2026-09-15 15:19:57 Medium 2

Report a package

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

0 / 4000
Your suggestion