package/pipewire: bump version to 1.2.2
Disabled roc & snap dependencies, which don't exist in buildroot. Added libselinux optional dependency. The bluez plugin now uses libglib2 explicitly. Although this dependency is implied by bluez5_utils, track it explicitly in the .mk file as well. Signed-off-by: George Kiagiadakis <george.kiagiadakis@collabora.com> Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
This commit is contained in:
parent
57fdc3cb8e
commit
93b72692c3
2 changed files with 14 additions and 5 deletions
|
|
@ -1,4 +1,4 @@
|
|||
# Locally calculated
|
||||
sha256 2b6e0c4d2e544f5030fa7f4ecf1edd9e5eed15dda1c97135e8a1fded9f3425fe pipewire-0.3.81.tar.bz2
|
||||
sha256 b3817f7b9abf14a6dbcb6ea18b186ba8771f703cb395e4a38366b4e051c40054 pipewire-1.2.2.tar.bz2
|
||||
sha256 8909c319a7e27dbb33a15b9035f89ab3b7b2f6a12f8bcddc755206a8db1ada44 COPYING
|
||||
sha256 be4be5d77424833edf31f53fc1f1cecb6996b9e2d747d9e6fb8f878362ebc92b LICENSE
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
#
|
||||
################################################################################
|
||||
|
||||
PIPEWIRE_VERSION = 0.3.81
|
||||
PIPEWIRE_VERSION = 1.2.2
|
||||
PIPEWIRE_SOURCE = pipewire-$(PIPEWIRE_VERSION).tar.bz2
|
||||
PIPEWIRE_SITE = https://gitlab.freedesktop.org/pipewire/pipewire/-/archive/$(PIPEWIRE_VERSION)
|
||||
PIPEWIRE_LICENSE = MIT, LGPL-2.1+ (libspa-alsa), GPL-2.0 (libjackserver)
|
||||
|
|
@ -34,10 +34,12 @@ PIPEWIRE_CONF_OPTS += \
|
|||
-Dsession-managers=[] \
|
||||
-Dlegacy-rtkit=false \
|
||||
-Davb=disabled \
|
||||
-Droc=disabled \
|
||||
-Dlibcanberra=disabled \
|
||||
-Dlibmysofa=disabled \
|
||||
-Dlibffado=disabled \
|
||||
-Dflatpak=disabled
|
||||
-Dflatpak=disabled \
|
||||
-Dsnap=disabled
|
||||
|
||||
ifeq ($(BR2_PACKAGE_DBUS),y)
|
||||
PIPEWIRE_CONF_OPTS += -Ddbus=enabled
|
||||
|
|
@ -105,9 +107,9 @@ else
|
|||
PIPEWIRE_CONF_OPTS += -Dpipewire-jack=disabled -Djack=disabled
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_BLUEZ5_UTILS)$(BR2_PACKAGE_SBC),yy)
|
||||
ifeq ($(BR2_PACKAGE_BLUEZ5_UTILS)$(BR2_PACKAGE_SBC)$(BR2_PACKAGE_LIBGLIB2),yyy)
|
||||
PIPEWIRE_CONF_OPTS += -Dbluez5=enabled
|
||||
PIPEWIRE_DEPENDENCIES += bluez5_utils sbc
|
||||
PIPEWIRE_DEPENDENCIES += bluez5_utils sbc libglib2
|
||||
ifeq ($(BR2_PACKAGE_MODEM_MANAGER),y)
|
||||
PIPEWIRE_CONF_OPTS += -Dbluez5-backend-native-mm=enabled
|
||||
PIPEWIRE_DEPENDENCIES += modem-manager
|
||||
|
|
@ -245,6 +247,13 @@ else
|
|||
PIPEWIRE_CONF_OPTS += -Draop=disabled
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBSELINUX),y)
|
||||
PIPEWIRE_CONF_OPTS += -Dselinux=enabled
|
||||
PIPEWIRE_DEPENDENCIES += libselinux
|
||||
else
|
||||
PIPEWIRE_CONF_OPTS += -Dselinux=disabled
|
||||
endif
|
||||
|
||||
define PIPEWIRE_USERS
|
||||
pipewire -1 pipewire -1 * - - audio,video PipeWire System Daemon
|
||||
endef
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue