PKGBUILDs/extra/pulseaudio/pulseaudio.install

29 lines
881 B
Plaintext
Raw Normal View History

2013-04-01 23:50:22 +00:00
post_install() {
cat << MES
>>> See the wiki at http://wiki.archlinux.org/index.php/PulseAudio for details
on configuring your system for PulseAudio.
>>> Make sure to install pulseaudio-alsa to configure ALSA for PulseAudio.
MES
}
post_upgrade() {
cat << MES
>>> If you have per-user copies of configuration files (such as client.conf,
2013-10-28 14:04:55 +00:00
daemon.conf or default.pa) in ~/.config/pulse or ~/.pulse/, make sure you
keep them in sync with changes to the packaged files in /etc/pulse/.
Otherwise, PulseAudio may refuse to start due to configuration errors.
2013-04-01 23:50:22 +00:00
MES
if (( $(vercmp $2 3.0-3) < 0 )); then
cat << MES
>>> Autospawn is now disabled by default. If you need to run PulseAudio outside
of an X session, either:
- Enable autospawn in client.conf, or
- Start it manually by executing 'pulseaudio --start'
MES
fi
}
# vim:set ts=2 sw=2 et: