speakoflow-appimage
maintainer whyshouldibother
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package installs a prebuilt AppImage from the project's official GitHub releases, which is a normal distribution method; the source is verifiable and matches the project, so despite few votes and recent upload, there is no evidence of malicious intent or supply-chain risk.
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.
LOW
AI review
llm_review
An AI model (qwen/qwen3-235b-a22b-2507) reviewed this and agrees it is LOW (confidence 95%): The package installs a prebuilt AppImage from the project's official GitHub releases, which is a normal distribution method; the source is verifiable and matches the project, so despite few votes and recent upload, there is no evidence of malicious intent or supply-chain risk.
PKGBUILD
1
# Maintainer: maintainer@speakoflow.com
2
3
pkgname=speakoflow-bin
4
pkgver=1.0.2
5
pkgrel=2
6
pkgdesc="A free, open-source, local-first voice-to-text desktop application with offline speech recognition, AI-assisted writing, speech cleanup, translation, and a system-wide voice assistant."
7
8
arch=('x86_64')
9
url="https://github.com/AbhishekBarali/SpeakoFlow"
10
license=('MIT')
11
conflicts=('speakoflow-git' 'speakoflow')
12
provides=('speakoflow-bin')
13
14
options=(!strip !debug)
15
16
_appimage="SpeakoFlow_${pkgver}_amd64.AppImage"
17
source=("${_appimage}::${url}/releases/download/v${pkgver}/${_appimage}")
18
sha256sums=('c7fa361909f076ab7cdd45a8069ff34b84d54e41d3b5a6482c5acf178578c9e6')
19
20
prepare(){
21
cd "$srcdir"
22
chmod +x "${_appimage}"
23
./"${_appimage}" --appimage-extract
24
}
25
26
package() {
27
cd "$srcdir"
28
29
#Installing App image
30
install -Dm755 "${_appimage}" "${pkgdir}/opt/speakoflow/SpeakoFlow.AppImage"
31
32
#create /usr/bin file
33
install -dm755 "${pkgdir}/usr/bin"
34
35
#create a link to the appimage and bin file
36
ln -s /opt/speakoflow/SpeakoFlow.AppImage "${pkgdir}/usr/bin/speakoflow"
37
38
#find the desktop file
39
desktop_file=$(find squashfs-root -name '*.desktop' -print -quit)
40
install -Dm644 "$desktop_file" "${pkgdir}/usr/share/applications/speakoflow.desktop"
41
42
#update exec line
43
sed -i 's|^Exec=.*|Exec=/usr/bin/speakoflow|' "${pkgdir}/usr/share/applications/speakoflow.desktop"
44
45
#installing icons
46
cp -r squashfs-root/usr/share/icons "${pkgdir}/usr/share"
47
}
48
Changes since previous scan
--- PKGBUILD @ 2026-07-29 00:25+++ PKGBUILD @ 2026-08-03 00:08@@ -1,18 +1,18 @@ # Maintainer: maintainer@speakoflow.com -pkgname=speakoflow-appimage+pkgname=speakoflow-bin pkgver=1.0.2-pkgrel=1-pkgdesc="SpeakoFlow is a free, open-source, local-first voice-to-text desktop application with offline speech recognition, AI-assisted writing, speech cleanup, translation, and a system-wide voice assistant. Learn more at https://www.speakoflow.com/"+pkgrel=2+pkgdesc="A free, open-source, local-first voice-to-text desktop application with offline speech recognition, AI-assisted writing, speech cleanup, translation, and a system-wide voice assistant." arch=('x86_64') url="https://github.com/AbhishekBarali/SpeakoFlow" license=('MIT')-provides=('speakoflow-appimage')-conflicts=('speakoflow-bin' 'speakoflow-git' 'speakoflow')-+conflicts=('speakoflow-git' 'speakoflow')+provides=('speakoflow-bin') options=(!strip !debug)+ _appimage="SpeakoFlow_${pkgver}_amd64.AppImage" source=("${_appimage}::${url}/releases/download/v${pkgver}/${_appimage}") sha256sums=('c7fa361909f076ab7cdd45a8069ff34b84d54e41d3b5a6482c5acf178578c9e6')@@ -26,25 +26,23 @@ package() { cd "$srcdir" - # 1. Install the AppImage as the main binary- install -Dm755 "${_appimage}" "${pkgdir}/usr/bin/speakoflow"+ #Installing App image+ install -Dm755 "${_appimage}" "${pkgdir}/opt/speakoflow/SpeakoFlow.AppImage" - # 2. Automatically find the Desktop file (wherever it is in the extracted folder)- # This fixes the "cannot stat" error by searching for any .desktop file- local _desktop_path=$(find squashfs-root -name "*.desktop" -print -quit)- - if [ -n "$_desktop_path" ]; then- install -Dm644 "$_desktop_path" "${pkgdir}/usr/share/applications/speakoflow.desktop"- - # 3. Fix the Exec path so it launches /usr/bin/speakoflow- sed -i "s|Exec=.*|Exec=/usr/bin/speakoflow|g" "${pkgdir}/usr/share/applications/speakoflow.desktop"- fi+ #create /usr/bin file+ install -dm755 "${pkgdir}/usr/bin" - # 4. Install Icons- # We look for the standard icons directory and copy it to the system- if [ -d "squashfs-root/usr/share/icons" ]; then- mkdir -p "${pkgdir}/usr/share"- cp -r squashfs-root/usr/share/icons "${pkgdir}/usr/share/"- fi+ #create a link to the appimage and bin file+ ln -s /opt/speakoflow/SpeakoFlow.AppImage "${pkgdir}/usr/bin/speakoflow"++ #find the desktop file+ desktop_file=$(find squashfs-root -name '*.desktop' -print -quit)+ install -Dm644 "$desktop_file" "${pkgdir}/usr/share/applications/speakoflow.desktop"++ #update exec line+ sed -i 's|^Exec=.*|Exec=/usr/bin/speakoflow|' "${pkgdir}/usr/share/applications/speakoflow.desktop"++ #installing icons+ cp -r squashfs-root/usr/share/icons "${pkgdir}/usr/share" } Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 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 11:11:22 | LOW | 2 |
| 2026-07-29 00:25:53 | MEDIUM | 2 |
| 2026-07-28 15:39:03 | MEDIUM | 2 |
| 2026-07-28 00:07:28 | MEDIUM | 2 |
| 2026-07-27 15:35:03 | MEDIUM | 2 |
| 2026-07-27 11:35:00 | MEDIUM | 2 |