solomd-bin
maintainer gonwex
· 0 votes
· scanned 2026-08-03 00:08:14.047287
MEDIUM
View on AUR ↗
Why flagged
The package installs an unverifiable prebuilt AppImage from GitHub Releases without checksum validation, posing a supply-chain risk if the source were compromised.
Triggered rules
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.
MEDIUM
AI review of an ambiguous pattern
llm_review
The static rules found a suspicious pattern they could not resolve, so an AI model (qwen/qwen3-235b-a22b-2507) reviewed it and judged it MEDIUM (confidence 95%): The package installs an unverifiable prebuilt AppImage from GitHub Releases without checksum validation, posing a supply-chain risk if the source were compromised.
PKGBUILD
1
# Maintainer: zhitong <dev@solomd.local>
2
pkgname=solomd-bin
3
pkgver=4.11.0
4
pkgrel=1
5
pkgdesc='A lightweight Markdown and plain text editor built with Tauri 2'
6
arch=('x86_64')
7
url='https://solomd.app'
8
license=('MIT')
9
depends=('webkit2gtk-4.1' 'gtk3' 'libayatana-appindicator' 'librsvg' 'fuse2')
10
optdepends=(
11
'wl-clipboard: clipboard image support on Wayland'
12
'xclip: clipboard image support on X11'
13
)
14
provides=('solomd')
15
conflicts=('solomd')
16
options=('!strip' '!debug')
17
source=("${pkgname}-${pkgver}.AppImage::https://github.com/zhitongblog/solomd/releases/download/v${pkgver}/SoloMD_${pkgver}_amd64.AppImage"
18
"solomd.desktop")
19
sha256sums=('SKIP'
20
'SKIP')
21
22
prepare() {
23
chmod +x "${pkgname}-${pkgver}.AppImage"
24
"./${pkgname}-${pkgver}.AppImage" --appimage-extract 2>/dev/null || true
25
}
26
27
package() {
28
# Install the AppImage binary
29
install -Dm755 "${srcdir}/${pkgname}-${pkgver}.AppImage" \
30
"${pkgdir}/opt/solomd/SoloMD.AppImage"
31
32
# Install extracted icon if available, otherwise skip
33
if [ -d "${srcdir}/squashfs-root" ]; then
34
find "${srcdir}/squashfs-root" -name "*.png" -path "*/128x128/*" \
35
-exec install -Dm644 {} "${pkgdir}/usr/share/icons/hicolor/128x128/apps/solomd.png" \; 2>/dev/null || true
36
fi
37
38
# Install desktop file
39
install -Dm644 "${srcdir}/solomd.desktop" \
40
"${pkgdir}/usr/share/applications/solomd.desktop"
41
42
# Create /usr/bin symlinks (both SoloMD and solomd)
43
install -dm755 "${pkgdir}/usr/bin"
44
ln -sf /opt/solomd/SoloMD.AppImage "${pkgdir}/usr/bin/SoloMD"
45
ln -sf /opt/solomd/SoloMD.AppImage "${pkgdir}/usr/bin/solomd"
46
}
47
Changes since previous scan
--- PKGBUILD @ 2026-07-31 00:14+++ PKGBUILD @ 2026-08-03 00:08@@ -1,6 +1,6 @@ # Maintainer: zhitong <dev@solomd.local> pkgname=solomd-bin-pkgver=4.10.2+pkgver=4.11.0 pkgrel=1 pkgdesc='A lightweight Markdown and plain text editor built with Tauri 2' arch=('x86_64')Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | MEDIUM | 2 |
| 2026-08-02 00:16:08 | MEDIUM | 2 |
| 2026-08-01 00:11:18 | MEDIUM | 2 |
| 2026-07-31 03:17:12 | MEDIUM | 2 |
| 2026-07-31 00:14:10 | MEDIUM | 2 |
| 2026-07-30 00:17:23 | MEDIUM | 2 |
| 2026-07-29 07:10:52 | MEDIUM | 2 |