labelforge-bin
CLEAN
maintainer gyfooya
0 votes
scanned 2026-09-10 00:22:44.768965
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
3
pkgname=labelforge-bin
4
pkgver=1.16.1
5
pkgrel=1
6
pkgdesc="Free and open-source ZPL label designer"
7
arch=('x86_64')
8
url="https://github.com/dextsamu/labelforge"
9
license=('MIT')
10
11
depends=(
12
'alsa-lib'
13
'gtk3'
14
'libxss'
15
'nss'
16
)
17
18
source=(
19
"LabelForge-linux-x64.zip::https://github.com/dextsamu/labelforge/releases/download/v${pkgver}/LabelForge-linux-x64.zip"
20
)
21
22
sha256sums=('0b06f3d41087fb094b06a2722f5c84a8741cb2ec28e81205e5547156fd67fcf3')
23
24
options=('!strip')
25
26
package() {
27
local appdir="${pkgdir}/opt/labelforge"
28
local resdir="${srcdir}/LabelForge-linux-x64/resources/app"
29
30
```
31
# Install complete Electron application
32
install -dm755 "${appdir}"
33
cp -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.
39
find "${appdir}" -type d -exec chmod 755 {} +
40
find "${appdir}" -type f -exec chmod 644 {} +
41
42
# Executables
43
chmod 755 "${appdir}/LabelForge"
44
chmod 755 "${appdir}/chrome_crashpad_handler"
45
46
# Electron Chromium sandbox
47
chmod 4755 "${appdir}/chrome-sandbox"
48
49
# Command line launcher
50
install -dm755 "${pkgdir}/usr/bin"
51
ln -s "/opt/labelforge/LabelForge" \
52
"${pkgdir}/usr/bin/labelforge"
53
54
# Application icons
55
install -Dm644 \
56
"${resdir}/build/icon.png" \
57
"${pkgdir}/usr/share/icons/hicolor/512x512/apps/labelforge.png"
58
59
install -Dm644 \
60
"${resdir}/build/icon.svg" \
61
"${pkgdir}/usr/share/icons/hicolor/scalable/apps/labelforge.svg"
62
63
# Desktop entry
64
install -dm755 "${pkgdir}/usr/share/applications"
65
66
printf '%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
79
install -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) | Severity | Rules |
|---|---|---|
| 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 |