From 26f7fbf5d43e14dd1e16f0595f6348cfddb4e1f1 Mon Sep 17 00:00:00 2001 From: Robby Workman Date: Wed, 6 Jan 2016 16:01:41 -0600 Subject: audio/rezound: Set pulseaudio as default sound system Signed-off-by: Robby Workman --- audio/rezound/README | 3 ++- audio/rezound/rezound.SlackBuild | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) (limited to 'audio') diff --git a/audio/rezound/README b/audio/rezound/README index 63687776c7..9b9200777f 100644 --- a/audio/rezound/README +++ b/audio/rezound/README @@ -23,7 +23,8 @@ Supported Audio I/O Interfaces: The default audio interface is set to ALSA. You can enable alternative audio interfaces by passing variables to the script (VARIABLE=yes/no): +PULSE=yes|no (default: yes) +ALSA=yes|no (default: no) OSS=yes|no (default: no) -ALSA=yes|no (default: yes) JACK=yes|no (default: no), requires jack-audio-connection-kit PORT=yes|no (default: no), requires portaudio diff --git a/audio/rezound/rezound.SlackBuild b/audio/rezound/rezound.SlackBuild index 9c31bb0e50..401331322e 100644 --- a/audio/rezound/rezound.SlackBuild +++ b/audio/rezound/rezound.SlackBuild @@ -54,12 +54,12 @@ else LIBDIRSUFFIX="" fi -# Define supported sound system. ALSA is the one enabled by default +# Define supported sound system. PULSE is the one enabled by default oss="--disable-oss" ; [ "${OSS:-no}" != "no" ] && oss="--enable-oss" -alsa="--enable-alsa" ; [ "${ALSA:-yes}" != "yes" ] && alsa="--disable-alsa" +alsa="--disable-alsa" ; [ "${ALSA:-no}" != "no" ] && alsa="--enable-alsa" port="--disable-portaudio" ; [ "${PORT:-no}" != "no" ] && port="--enable-portaudio" jack="--disable-jack" ; [ "${JACK:-no}" != "no" ] && jack="--enable-jack" -pulse="--disable-pulse" ; [ "${PULSE:-no}" != "no" ] && pulse="--enable-pulse" +pulse="--enable-pulse" ; [ "${PULSE:-yes}" != "yes" ] && pulse="--disable-pulse" set -e -- cgit v1.2.3