mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-28 13:16:41 +00:00
image: add PIPEWIRE_SUPPORT option
This commit is contained in:
parent
2201b0f3fe
commit
59b247ee66
@ -87,6 +87,9 @@
|
|||||||
# build and install PulseAudio support (yes / no)
|
# build and install PulseAudio support (yes / no)
|
||||||
PULSEAUDIO_SUPPORT="yes"
|
PULSEAUDIO_SUPPORT="yes"
|
||||||
|
|
||||||
|
# build and install pipewire support (yes / no)
|
||||||
|
PIPEWIRE_SUPPORT="no"
|
||||||
|
|
||||||
# build and install eSpeak-NG support (yes / no)
|
# build and install eSpeak-NG support (yes / no)
|
||||||
ESPEAK_SUPPORT="no"
|
ESPEAK_SUPPORT="no"
|
||||||
|
|
||||||
|
@ -19,6 +19,12 @@ PKG_LONGDESC="Root package used to build and create complete image"
|
|||||||
|
|
||||||
[ "${PULSEAUDIO_SUPPORT}" = "yes" ] && PKG_DEPENDS_TARGET+=" pulseaudio"
|
[ "${PULSEAUDIO_SUPPORT}" = "yes" ] && PKG_DEPENDS_TARGET+=" pulseaudio"
|
||||||
|
|
||||||
|
[ "${PIPEWIRE_SUPPORT}" = "yes" ] && PKG_DEPENDS_TARGET+=" pipewire wireplumber"
|
||||||
|
|
||||||
|
if [ "${PULSEAUDIO_SUPPORT}" = "yes" -a "${PIPEWIRE_SUPPORT}" = "yes" ]; then
|
||||||
|
die "PULSEAUDIO_SUPPORT and PIPEWIRE_SUPPORT cannot be enabled together"
|
||||||
|
fi
|
||||||
|
|
||||||
# Automounter support
|
# Automounter support
|
||||||
[ "${UDEVIL}" = "yes" ] && PKG_DEPENDS_TARGET+=" udevil"
|
[ "${UDEVIL}" = "yes" ] && PKG_DEPENDS_TARGET+=" udevil"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user