blob: f289a80ed666bca87c8010b5827a7b99c4d668a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
post_install() {
echo
echo " > FluidSynth comes with a daemon. Start/enable it with systemd."
echo " > Before that, you need a soundfont and some preconfiguration:"
echo " /etc/conf.d/fluidsynth"
echo
echo " > PulseAudio output when running as a daemon is known to be"
echo " > problematic. See the following bulletin board post:"
echo " https://bbs.archlinux.org/viewtopic.php?id=135092"
echo
}
post_upgrade() {
echo " > Configuration is once again done via /etc/conf.d/fluidsynth"
echo " > Remove any and all other configuration files."
}
|