blob: ee2901e2290aca630a69edeaae1776b030ca75a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
post_install() {
if command -v gtk-update-icon-cache >/dev/null 2>&1; then
gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
fi
if command -v update-desktop-database >/dev/null 2>&1; then
update-desktop-database -q
fi
cat <<'EOF'
DonutStudio installed.
Run it from your application menu or with:
donutstudio
Plugin paths:
VST3: /usr/lib/vst3/DonutStudio.vst3
CLAP: /usr/lib/clap/DonutStudio.clap
Bitwig controller script:
/usr/share/donutstudio/DonutStudio.control.js
NOTE: This package coexists with 'arbit-bin' (legacy codename). If you
previously installed arbit-bin, you can remove it with:
sudo pacman -Rns arbit-bin
Both packages install the same engine binary, so the transition is
seamless — settings, projects, and the .arbit file format carry over.
EOF
}
post_upgrade() {
post_install
}
post_remove() {
if command -v gtk-update-icon-cache >/dev/null 2>&1; then
gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
fi
if command -v update-desktop-database >/dev/null 2>&1; then
update-desktop-database -q
fi
}
|