streamdeck-controller
The pip install fetches dependencies from PyPI, which is a standard and expected practice; the package builds from its own source and installs only project-related components without executing untrusted remote code.
Triggered rules
llm_review
The static rules flagged this MEDIUM, but an AI model (qwen/qwen3-235b-a22b-07-25) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The pip install fetches dependencies from PyPI, which is a standard and expected practice; the package builds from its own source and installs only project-related components without executing untrusted remote code.
1 higher static finding superseded - not the current verdict (shown for transparency)
pip_install_external
`pip install <package>` fetches an unpinned package from PyPI at build time, outside source=() and makepkg's checksums.
-
PKGBUILD:23
pip install streamdeck pillow PySide6 --target "$srcdir/pylibs" --quiet
PKGBUILD
1 offending line(s) highlighted# Maintainer: Rico <ricwoh@pm.me>
pkgname=streamdeck-controller
pkgver=r1.811b68d
pkgrel=1
pkgdesc="Elgato Stream Deck GUI-Konfigurator und Controller"
arch=('x86_64')
url="https://github.com/ricwoh/streamdeck-controller"
license=('MIT')
depends=('python' 'hidapi')
makedepends=('python-pip')
install="$pkgname.install"
source=("git+https://github.com/ricwoh/streamdeck-controller.git")
options=(!debug !strip)
sha256sums=('SKIP')
pkgver() {
cd "$srcdir/$pkgname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd "$srcdir/$pkgname"
pip install streamdeck pillow PySide6 --target "$srcdir/pylibs" --quiet
}
package() {
cd "$srcdir/$pkgname"
# Python-Bibliothek (streamdeck, nicht in Arch-Repos)
install -dm755 "$pkgdir/usr/lib/$pkgname"
cp -r "$srcdir/pylibs/." "$pkgdir/usr/lib/$pkgname/"
# App-Dateien
install -Dm644 streamdeck_app.py "$pkgdir/usr/share/$pkgname/streamdeck_app.py"
# Icons-Ordner (leer – Nutzer legt eigene rein)
install -dm755 "$pkgdir/usr/share/$pkgname/Icons"
# Starter-Skript
install -dm755 "$pkgdir/usr/bin"
cat > "$pkgdir/usr/bin/streamdeck-controller" << 'EOF'
#!/bin/bash
export PYTHONPATH=/usr/lib/streamdeck-controller:${PYTHONPATH}
exec python3 /usr/share/streamdeck-controller/streamdeck_app.py "$@"
EOF
chmod 755 "$pkgdir/usr/bin/streamdeck-controller"
# udev-Regel (automatisch aktiv nach Installation)
install -dm755 "$pkgdir/usr/lib/udev/rules.d"
cat > "$pkgdir/usr/lib/udev/rules.d/50-elgato-streamdeck.rules" << 'EOF'
SUBSYSTEM=="usb", ATTRS{idVendor}=="0fd9", TAG+="uaccess"
KERNEL=="hidraw*", ATTRS{idVendor}=="0fd9", TAG+="uaccess"
EOF
# Desktop-Eintrag
install -dm755 "$pkgdir/usr/share/applications"
cat > "$pkgdir/usr/share/applications/streamdeck-controller.desktop" << 'EOF'
[Desktop Entry]
Name=Stream Deck
Comment=Elgato Stream Deck Konfigurator
Exec=streamdeck-controller
Icon=input-gaming
Terminal=false
Type=Application
Categories=Utility;HardwareSettings;
EOF
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-17 00:27:14 | Low | 2 |
| 2026-09-16 00:03:17 | Low | 2 |
| 2026-09-15 00:25:31 | Low | 2 |
| 2026-09-14 00:27:57 | Low | 2 |
| 2026-09-13 00:19:54 | Low | 2 |
| 2026-09-12 00:25:17 | Low | 2 |
| 2026-09-11 00:19:22 | Low | 2 |
| 2026-09-10 00:22:44 | Low | 2 |
| 2026-09-09 00:04:09 | Low | 2 |
| 2026-09-08 00:18:08 | Low | 2 |
| 2026-09-07 00:30:15 | Low | 2 |
| 2026-09-06 00:17:06 | Low | 2 |
| 2026-09-05 00:16:27 | Low | 2 |
| 2026-09-04 00:03:13 | Low | 2 |
| 2026-09-03 00:15:47 | Low | 2 |
| 2026-09-02 00:02:31 | Low | 2 |
| 2026-09-01 00:11:19 | Low | 2 |
| 2026-08-31 00:19:57 | Low | 2 |
| 2026-08-30 00:04:14 | Low | 2 |
| 2026-08-29 00:29:17 | Low | 2 |