speakoflow-bin
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
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 |