animaru
MEDIUM
maintainer orphaned
0 votes
scanned 2026-09-17 00:27:14.276658
Why flagged
The package installs unverified Python code via pipx from a git repository at runtime, creating a supply-chain risk if the repository is compromised.
Triggered rules
Medium
External install via pipx/uv/poetry/cargo/go/gem
alt_pkg_manager_install
A non-pip/npm package manager (pipx, uv, poetry, cargo install, go install, gem, conda…) fetches and builds an external package at build time, outside source=() and makepkg's checksums.
-
PKGBUILD:31
pipx install "git+https://github.com/murdialthaf/animaru.git"
Medium
AI review
llm_review
An AI model (qwen/qwen3-235b-a22b-2507) reviewed this and agrees it is MEDIUM (confidence 90%): The package installs unverified Python code via pipx from a git repository at runtime, creating a supply-chain risk if the repository is compromised.
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: Murdi <murdialthaf848@gmail.com>
2
3
pkgname=animaru
4
pkgver=0.2.0
5
pkgrel=1
6
pkgdesc="A GTK4 GUI for watching and downloading anime"
7
arch=('any')
8
url="https://github.com/murdialthaf/animaru"
9
license=('GPL3')
10
depends=(
11
'python'
12
'python-gobject'
13
'python-pipx'
14
'gtk4'
15
'libadwaita'
16
'mpv'
17
)
18
19
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/murdialthaf/${pkgname}/archive/v${pkgver}.tar.gz")
20
sha256sums=('SKIP')
21
22
package() {
23
cd "${srcdir}/${pkgname}-${pkgver}"
24
25
install -Dm755 /dev/stdin "${pkgdir}/usr/bin/animaru" << 'WRAPPER'
26
#!/bin/bash
27
APP=animaru
28
PIPX_HOME="${XDG_DATA_HOME:-$HOME/.local/share}/pipx"
29
export PIPX_HOME
30
if ! "$PIPX_HOME/venvs/$APP/bin/$APP" --version &>/dev/null; then
31
pipx install "git+https://github.com/murdialthaf/animaru.git"
32
fi
33
exec "$PIPX_HOME/venvs/$APP/bin/$APP" "$@"
34
WRAPPER
35
36
install -Dm644 data/animaru.desktop -t "${pkgdir}/usr/share/applications"
37
install -Dm644 data/icons/animaru.svg -t "${pkgdir}/usr/share/icons/hicolor/scalable/apps"
38
}
39
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-17 00:27:14 | Medium | 2 |
| 2026-09-16 00:03:17 | Medium | 2 |
| 2026-09-15 00:25:31 | Medium | 2 |
| 2026-09-14 00:27:57 | Medium | 2 |
| 2026-09-13 00:19:54 | Medium | 2 |
| 2026-09-12 00:25:17 | Medium | 2 |
| 2026-09-11 00:19:22 | Medium | 2 |
| 2026-09-10 00:22:44 | Medium | 2 |
| 2026-09-09 00:04:09 | Medium | 2 |
| 2026-09-08 00:18:08 | Medium | 2 |
| 2026-09-07 00:30:15 | Medium | 2 |
| 2026-09-06 00:17:06 | Medium | 2 |
| 2026-09-05 00:16:27 | Medium | 2 |
| 2026-09-04 00:03:13 | Medium | 2 |
| 2026-09-03 00:15:47 | Medium | 2 |
| 2026-09-02 00:02:31 | Medium | 2 |
| 2026-09-01 00:11:19 | Medium | 2 |
| 2026-08-31 00:19:57 | Medium | 2 |
| 2026-08-30 00:04:14 | Medium | 2 |
| 2026-08-29 00:29:17 | Medium | 2 |