labelforge-bin

CLEAN
maintainer gyfooya 0 votes scanned 2026-09-10 00:22:44.768965
View on AUR

Triggered rules

Clean AI review downgraded a static finding llm_review

The static rules flagged this LOW, but an AI model (qwen/qwen3-235b-a22b-2507) reviewed the full PKGBUILD and judged it CLEAN (confidence 95%): The package installs a prebuilt Electron app from the project's official GitHub releases, which is normal for such applications; all actions are transparent and target only the local package directory.

1 higher static finding superseded - not the current verdict (shown for transparency)
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.

PKGBUILD

1# Maintainer: GYFOOYA <gyfooya@antispam-gmail>
2
3pkgname=labelforge-bin
4pkgver=1.16.1
5pkgrel=1
6pkgdesc="Free and open-source ZPL label designer"
7arch=('x86_64')
8url="https://github.com/dextsamu/labelforge"
9license=('MIT')
10
11depends=(
12'alsa-lib'
13'gtk3'
14'libxss'
15'nss'
16)
17
18source=(
19"LabelForge-linux-x64.zip::https://github.com/dextsamu/labelforge/releases/download/v${pkgver}/LabelForge-linux-x64.zip"
20)
21
22sha256sums=('0b06f3d41087fb094b06a2722f5c84a8741cb2ec28e81205e5547156fd67fcf3')
23
24options=('!strip')
25
26package() {
27local appdir="${pkgdir}/opt/labelforge"
28local resdir="${srcdir}/LabelForge-linux-x64/resources/app"
29
30```
31# Install complete Electron application
32install -dm755 "${appdir}"
33cp -a "${srcdir}/LabelForge-linux-x64/." "${appdir}/"
34
35# Normalize permissions from the archive.
36# The upstream archive contains directories with restrictive
37# permissions that would otherwise prevent normal users from
38# accessing the application.
39find "${appdir}" -type d -exec chmod 755 {} +
40find "${appdir}" -type f -exec chmod 644 {} +
41
42# Executables
43chmod 755 "${appdir}/LabelForge"
44chmod 755 "${appdir}/chrome_crashpad_handler"
45
46# Electron Chromium sandbox
47chmod 4755 "${appdir}/chrome-sandbox"
48
49# Command line launcher
50install -dm755 "${pkgdir}/usr/bin"
51ln -s "/opt/labelforge/LabelForge" \
52 "${pkgdir}/usr/bin/labelforge"
53
54# Application icons
55install -Dm644 \
56 "${resdir}/build/icon.png" \
57 "${pkgdir}/usr/share/icons/hicolor/512x512/apps/labelforge.png"
58
59install -Dm644 \
60 "${resdir}/build/icon.svg" \
61 "${pkgdir}/usr/share/icons/hicolor/scalable/apps/labelforge.svg"
62
63# Desktop entry
64install -dm755 "${pkgdir}/usr/share/applications"
65
66printf '%s\n' \
67 '[Desktop Entry]' \
68 'Name=LabelForge' \
69 'Comment=ZPL label designer' \
70 'Exec=labelforge %U' \
71 'Icon=labelforge' \
72 'Terminal=false' \
73 'Type=Application' \
74 'Categories=Graphics;Office;' \
75 'StartupWMClass=LabelForge' \
76 > "${pkgdir}/usr/share/applications/labelforge.desktop"
77
78# License
79install -Dm644 \
80 "${resdir}/LICENSE" \
81 "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
82```
83
84}
85

Changes since previous scan

--- PKGBUILD @ 2026-09-09 00:04
+++ PKGBUILD @ 2026-09-10 00:22
@@ -1,7 +1,7 @@
# Maintainer: GYFOOYA <gyfooya@antispam-gmail>
pkgname=labelforge-bin
-pkgver=1.16.0
+pkgver=1.16.1
pkgrel=1
pkgdesc="Free and open-source ZPL label designer"
arch=('x86_64')
@@ -19,9 +19,7 @@
"LabelForge-linux-x64.zip::https://github.com/dextsamu/labelforge/releases/download/v${pkgver}/LabelForge-linux-x64.zip"
)
-sha256sums=(
-'25ad6ad8643c5bd9562ae1e6b53001e66dd4bbed511baf91d1696d81c3970735'
-)
+sha256sums=('0b06f3d41087fb094b06a2722f5c84a8741cb2ec28e81205e5547156fd67fcf3')
options=('!strip')

Scan history

Scanned at (UTC)SeverityRules
2026-09-10 00:22:44 Clean 2
2026-09-09 23:20:11 Low 1
2026-09-09 00:04:09 Clean 2
2026-09-08 23:18:28 Low 1

Report a package

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

0 / 4000
Your suggestion