donutstudio-bin
maintainer DonutsDelivery
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package downloads a prebuilt binary from the project's own official domain; while the host is not a standard forge, it is plausibly project-owned and the content is verified via sha256sum, reducing supply-chain risk to low.
Triggered rules
LOW
AI review downgraded a static finding
llm_review
The static rules flagged this MEDIUM, but an AI model (qwen/qwen3-235b-a22b-2507) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The package downloads a prebuilt binary from the project's own official domain; while the host is not a standard forge, it is plausibly project-owned and the content is verified via sha256sum, reducing supply-chain risk to low.
1 higher static finding superseded - not the current verdict (shown for transparency)
MEDIUM
source=() URL on a non-standard host
source_untrusted_domain
One or more source=() URLs point to a host outside the trusted allowlist (github.com, gitlab.com, codeberg.org, pypi.org, …).
-
PKGBUILD:29
source=("DonutStudio-linux-${pkgver}.zip::https://donutsdelivery.online/download-donutstudio/files/DonutStudio-linux.zip")
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: Donuts Delivery <support@donutsdelivery.online>
2
pkgname=donutstudio-bin
3
pkgver=0.6.0
4
pkgrel=1
5
pkgdesc="DonutStudio — harmonic composition workstation and MIDI editor (just-intonation native)"
6
arch=('x86_64')
7
url="https://donutsdelivery.online/donutstudio"
8
license=('custom')
9
depends=(
10
'alsa-lib'
11
'freetype2'
12
'gcc-libs'
13
'glibc'
14
'hicolor-icon-theme'
15
'libx11'
16
'libxcursor'
17
'libxinerama'
18
'libxrandr'
19
'mesa'
20
)
21
optdepends=(
22
'bitwig-studio: use the bundled Bitwig controller script'
23
'xdg-utils: desktop integration helpers'
24
)
25
options=('!strip')
26
provides=('donutstudio')
27
conflicts=('donutstudio')
28
install="${pkgname}.install"
29
source=("DonutStudio-linux-${pkgver}.zip::https://donutsdelivery.online/download-donutstudio/files/DonutStudio-linux.zip")
30
sha256sums=('78d517509f4ba69270d96844261f8a479f103a07355af9de30348baf9d1ac0e8')
31
32
package() {
33
install -dm755 "${pkgdir}/opt/donutstudio"
34
install -Dm755 "${srcdir}/DonutStudio" "${pkgdir}/opt/donutstudio/DonutStudio"
35
install -Dm755 "${srcdir}/DonutStudio Updater" "${pkgdir}/opt/donutstudio/DonutStudio Updater"
36
install -Dm755 "${srcdir}/ArbitPluginHost" "${pkgdir}/opt/donutstudio/ArbitPluginHost"
37
install -Dm755 "${srcdir}/ArbitPluginScanner" "${pkgdir}/opt/donutstudio/ArbitPluginScanner"
38
cp -a "${srcdir}/Soundfonts" "${pkgdir}/opt/donutstudio/"
39
cp -a "${srcdir}/video-helper" "${pkgdir}/opt/donutstudio/"
40
41
for content_dir in shader-packs mod-presets example-projects; do
42
cp -a "${srcdir}/${content_dir}" "${pkgdir}/opt/donutstudio/"
43
done
44
45
install -Dm644 "${srcdir}/DonutStudio.svg" "${pkgdir}/usr/share/icons/hicolor/scalable/apps/donutstudio.svg"
46
47
install -dm755 "${pkgdir}/usr/lib/clap"
48
install -Dm755 "${srcdir}/DonutStudio.clap" "${pkgdir}/usr/lib/clap/DonutStudio.clap"
49
50
install -dm755 "${pkgdir}/usr/lib/vst3"
51
cp -a "${srcdir}/DonutStudio.vst3" "${pkgdir}/usr/lib/vst3/DonutStudio.vst3"
52
53
# MIDI debug plugin (developer target; same rename for consistency)
54
if [ -d "${srcdir}/MIDI Debug.vst3" ]; then
55
cp -a "${srcdir}/MIDI Debug.vst3" "${pkgdir}/usr/lib/vst3/MIDI Debug.vst3"
56
fi
57
58
# Permissions
59
find "${pkgdir}/opt/donutstudio" -type d -exec chmod 755 {} +
60
find "${pkgdir}/opt/donutstudio" -type f -exec chmod 644 {} +
61
chmod 755 "${pkgdir}/opt/donutstudio/DonutStudio"
62
chmod 755 "${pkgdir}/opt/donutstudio/DonutStudio Updater"
63
chmod 755 "${pkgdir}/opt/donutstudio/ArbitPluginHost"
64
chmod 755 "${pkgdir}/opt/donutstudio/ArbitPluginScanner"
65
chmod 755 "${pkgdir}/opt/donutstudio/video-helper/arbit-video-helper"
66
67
# VST3 bundle permissions
68
find "${pkgdir}/usr/lib/vst3/DonutStudio.vst3" -type d -exec chmod 755 {} +
69
find "${pkgdir}/usr/lib/vst3/DonutStudio.vst3" -type f -exec chmod 644 {} +
70
find "${pkgdir}/usr/lib/vst3/DonutStudio.vst3" -name '*.so' -exec chmod 755 {} +
71
72
install -Dm644 "${srcdir}/DonutStudio.control.js" "${pkgdir}/usr/share/donutstudio/DonutStudio.control.js"
73
install -Dm644 "${srcdir}/THIRD_PARTY_LICENSES.md" "${pkgdir}/usr/share/licenses/${pkgname}/THIRD_PARTY_LICENSES.md"
74
75
# Symlink for CLI
76
install -dm755 "${pkgdir}/usr/bin"
77
ln -s /opt/donutstudio/DonutStudio "${pkgdir}/usr/bin/donutstudio"
78
79
# Desktop file
80
install -Dm644 /dev/stdin "${pkgdir}/usr/share/applications/donutstudio.desktop" <<'EOF'
81
[Desktop Entry]
82
Type=Application
83
Name=DonutStudio
84
Comment=DonutStudio — harmonic composition workstation and MIDI editor
85
Exec=donutstudio
86
Icon=donutstudio
87
Categories=AudioVideo;Audio;Midi;Music;
88
Terminal=false
89
StartupNotify=true
90
EOF
91
92
# License
93
install -Dm644 /dev/stdin "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" <<'EOF'
94
DonutStudio is proprietary closed-source software by Donuts Delivery.
95
96
This package installs the official binary open beta distributed from:
97
https://donutsdelivery.online/download-donutstudio/
98
99
Use of DonutStudio is governed by the license terms presented by Donuts Delivery
100
and by any license terms displayed by the application or official website.
101
EOF
102
}
103
Changes since previous scan
--- PKGBUILD @ 2026-07-31 00:14+++ PKGBUILD @ 2026-08-03 00:08@@ -1,6 +1,6 @@ # Maintainer: Donuts Delivery <support@donutsdelivery.online> pkgname=donutstudio-bin-pkgver=0.5.6+pkgver=0.6.0 pkgrel=1 pkgdesc="DonutStudio — harmonic composition workstation and MIDI editor (just-intonation native)" arch=('x86_64')@@ -27,7 +27,7 @@ conflicts=('donutstudio') install="${pkgname}.install" source=("DonutStudio-linux-${pkgver}.zip::https://donutsdelivery.online/download-donutstudio/files/DonutStudio-linux.zip")-sha256sums=('5ec428fac7804bfb2111247ec334fbf72ee47d436b480cc4ca469e5bf2318d17')+sha256sums=('78d517509f4ba69270d96844261f8a479f103a07355af9de30348baf9d1ac0e8') package() { install -dm755 "${pkgdir}/opt/donutstudio"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 17:18:23 | MEDIUM | 1 |
| 2026-07-31 00:14:10 | MEDIUM | 2 |
| 2026-07-30 00:17:23 | MEDIUM | 2 |
| 2026-07-29 00:25:53 | MEDIUM | 2 |
| 2026-07-28 01:36:52 | MEDIUM | 2 |
| 2026-07-28 00:07:28 | LOW | 2 |
| 2026-07-27 00:24:32 | LOW | 2 |
| 2026-07-26 19:33:02 | MEDIUM | 1 |
| 2026-07-26 00:07:32 | MEDIUM | 2 |
| 2026-07-25 00:13:44 | MEDIUM | 2 |
| 2026-07-24 13:27:52 | MEDIUM | 2 |
| 2026-07-24 00:02:28 | LOW | 2 |
| 2026-07-23 21:26:05 | MEDIUM | 1 |
| 2026-07-23 19:25:44 | MEDIUM | 1 |
| 2026-07-23 00:14:47 | LOW | 2 |
| 2026-07-22 00:29:32 | LOW | 2 |
| 2026-07-21 00:24:15 | LOW | 2 |