pluely-bin
MEDIUM
maintainer czyt
0 votes
scanned 2026-08-25 09:25:51.619243
Why flagged
The package installs a prebuilt Debian binary from GitHub releases without source compilation, creating a supply-chain risk if the release artifact is compromised.
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 95%): The package installs a prebuilt Debian binary from GitHub releases without source compilation, creating a supply-chain risk if the release artifact is compromised.
PKGBUILD
1
# Maintainer: czyt <czytcn@gmail.com>
2
pkgname=pluely-bin
3
pkgver=1.0.0
4
pkgrel=2
5
pkgdesc="Privacy-first AI assistant for meetings, interviews, and conversations"
6
arch=('x86_64')
7
url="https://github.com/iamsrikanthnani/pluely"
8
license=('GPL-3.0')
9
depends=('webkit2gtk-4.1' 'gtk3')
10
provides=('pluely')
11
conflicts=('pluely')
12
13
source_x86_64=(
14
"Pluely_${pkgver}_amd64.deb::https://github.com/iamsrikanthnani/pluely/releases/download/app-v${pkgver}/Pluely_${pkgver}_amd64.deb"
15
)
16
sha256sums_x86_64=('35bb32fbcaa51c5c6af4ed599c39ac526bacf029f73a0aa738631b57f0752e63')
17
18
package() {
19
local _deb="${srcdir}/Pluely_${pkgver}_amd64.deb"
20
local _data_member
21
22
_data_member=$(ar t "${_deb}" | awk '/^data\.tar\./ { print; exit }')
23
[[ -n "${_data_member}" ]] || {
24
echo "Could not find a data archive in ${_deb}" >&2
25
return 1
26
}
27
28
ar p "${_deb}" "${_data_member}" | bsdtar --no-same-owner -xf - -C "${pkgdir}"
29
chmod -R u=rwX,go=rX "${pkgdir}"
30
}
31
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-25 09:25:51 | Medium | 2 |