loxone-app-bin

maintainer VBen · 1 votes · scanned 2026-08-03 00:08:14.047287
LOW
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-08-03 00:08:14 LOW 2
2026-08-02 00:16:08 LOW 2
2026-08-01 00:11:18 LOW 2
2026-07-31 00:14:10 LOW 2
2026-07-30 00:17:23 LOW 2
2026-07-29 00:25:53 LOW 2
2026-07-28 00:07:28 LOW 2
2026-07-27 00:24:32 LOW 2
2026-07-26 00:07:32 LOW 2
2026-07-25 00:13:44 LOW 2
2026-07-24 00:02:28 LOW 2
2026-07-23 00:14:47 LOW 2
2026-07-22 00:29:32 LOW 2
2026-07-21 00:24:15 LOW 2
2026-07-20 00:19:49 LOW 2
2026-07-19 00:17:08 LOW 2
2026-07-18 00:14:48 LOW 2
2026-07-17 00:06:16 LOW 2
2026-07-16 00:05:41 LOW 2
2026-07-15 00:09:25 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