loxone-app-bin

LOW
maintainer VBen 1 votes scanned 2026-09-17 00:27:14.276658
View on AUR
Why flagged

The package downloads a prebuilt AppImage from the official vendor's domain (updatefiles.loxone.com), which is used as-is; this is a common and acceptable practice for distributing proprietary applications on Linux, and the checksums are provided and verifiable, reducing supply-chain risk.

Triggered rules

Low AI review downgraded a static finding 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 package downloads a prebuilt AppImage from the official vendor's domain (updatefiles.loxone.com), which is used as-is; this is a common and acceptable practice for distributing proprietary applications on Linux, and the checksums are provided and verifiable, reducing supply-chain risk.

1 higher static finding superseded - not the current verdict (shown for transparency)
Medium source=() URL on a non-standard host source_untrusted_domain

One or more source=() URLs point to a host outside the trusted allowlist (github.com, gitlab.com, codeberg.org, pypi.org, …).

  • PKGBUILD:15 source_x86_64=("${pkgname}-${pkgver}-x86_64.AppImage::https://updatefiles.loxone.com/linux/Release/${_buildnum}-x86_64.AppImage")

PKGBUILD

1 offending line(s) highlighted
1# Maintainer: VBen <devel@velmeden.info>
2pkgname=loxone-app-bin
3pkgver=17.1.2.17593
4pkgrel=1
5pkgdesc="Loxone Smart Home Control App"
6arch=('x86_64' 'aarch64')
7url="https://www.loxone.com"
8license=('custom')
9depends=('fuse2')
10options=('!strip')
11
12# Upstream filename = major(2) + minor(1) + patch(1) + build(5) digits, no dots
13_buildnum=171116704
14
15source_x86_64=("${pkgname}-${pkgver}-x86_64.AppImage::https://updatefiles.loxone.com/linux/Release/${_buildnum}-x86_64.AppImage")
16source_aarch64=("${pkgname}-${pkgver}-aarch64.AppImage::https://updatefiles.loxone.com/linux/Release/${_buildnum}-arm64.AppImage")
17sha256sums_x86_64=('e1efed8cae15c7fcd64d9112a921985b0d2aebed13dcba24f526855d532c7457')
18sha256sums_aarch64=('dd37591f8b22e56fc0fb2b80e73d251e83253c58df2d26aac217f2e8475ef6c0')
19
20prepare() {
21 if [ "$CARCH" = "x86_64" ]; then
22 _appimage="${pkgname}-${pkgver}-x86_64.AppImage"
23 else
24 _appimage="${pkgname}-${pkgver}-aarch64.AppImage"
25 fi
26
27 chmod +x "$_appimage"
28 ./"$_appimage" --appimage-extract
29 mv squashfs-root "${pkgname}-squashfs"
30}
31
32package() {
33 if [ "$CARCH" = "x86_64" ]; then
34 _appimage="${pkgname}-${pkgver}-x86_64.AppImage"
35 else
36 _appimage="${pkgname}-${pkgver}-aarch64.AppImage"
37 fi
38
39 # Install AppImage to /opt
40 install -Dm755 "$_appimage" "${pkgdir}/opt/${pkgname}/${pkgname}.AppImage"
41
42 # Launcher wrapper in PATH
43 install -Dm755 /dev/stdin "${pkgdir}/usr/bin/${pkgname}" << 'WRAPPER'
44#!/bin/sh
45exec /opt/loxone-app-bin/loxone-app-bin.AppImage "$@"
46WRAPPER
47
48 # Desktop entry — patch from embedded file if available
49 _desktop=$(find "${pkgname}-squashfs" -maxdepth 2 -name "*.desktop" | head -1)
50 if [ -n "$_desktop" ]; then
51 sed -i "s|^Exec=.*|Exec=/usr/bin/${pkgname}|" "$_desktop"
52 sed -i "s|^Icon=.*|Icon=${pkgname}|" "$_desktop"
53 install -Dm644 "$_desktop" "${pkgdir}/usr/share/applications/${pkgname}.desktop"
54 else
55 install -Dm644 /dev/stdin "${pkgdir}/usr/share/applications/${pkgname}.desktop" << EOF
56[Desktop Entry]
57Name=Loxone
58Comment=${pkgdesc}
59Exec=/usr/bin/${pkgname} %U
60Icon=${pkgname}
61Type=Application
62Categories=Network;
63StartupNotify=true
64EOF
65 fi
66
67 # Icons from hicolor tree inside the extracted AppImage
68 while IFS= read -r -d '' _icon; do
69 _size=$(basename "$(dirname "$(dirname "$_icon")")")
70 install -Dm644 "$_icon" \
71 "${pkgdir}/usr/share/icons/hicolor/${_size}/apps/${pkgname}.png"
72 done < <(find "${pkgname}-squashfs/usr/share/icons/hicolor" \
73 -name "*.png" -print0 2>/dev/null)
74
75 # Fallback: root-level .png (AppImage standard location)
76 if [ ! -d "${pkgdir}/usr/share/icons" ]; then
77 _icon=$(find "${pkgname}-squashfs" -maxdepth 1 -name "*.png" | head -1)
78 [ -n "$_icon" ] && install -Dm644 "$_icon" \
79 "${pkgdir}/usr/share/pixmaps/${pkgname}.png"
80 fi
81
82 # License
83 _license=$(find "${pkgname}-squashfs" -iname "license*" | head -1)
84 [ -n "$_license" ] && install -Dm644 "$_license" \
85 "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
86}
87

Scan history

Scanned at (UTC)SeverityRules
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

Report a package

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

0 / 4000
Your suggestion