package/wireplumber: new package

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2021.11.x
James Hilliard 2021-09-12 16:04:57 -06:00 committed by Arnout Vandecappelle (Essensium/Mind)
parent ddad938149
commit c9a3c10417
4 changed files with 65 additions and 0 deletions

View File

@ -1539,6 +1539,7 @@ menu "Graphics"
source "package/waylandpp/Config.in"
source "package/webkitgtk/Config.in"
source "package/webp/Config.in"
source "package/wireplumber/Config.in"
source "package/wlroots/Config.in"
source "package/woff2/Config.in"
source "package/wpebackend-fdo/Config.in"

View File

@ -0,0 +1,22 @@
config BR2_PACKAGE_WIREPLUMBER
bool "wireplumber"
depends on BR2_PACKAGE_PIPEWIRE
depends on BR2_PACKAGE_LUA_5_3 || BR2_PACKAGE_LUA_5_4
depends on BR2_USE_WCHAR # libglib2
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
depends on BR2_USE_MMU # libglib2
select BR2_PACKAGE_LIBGLIB2
help
WirePlumber is a modular session / policy manager for
PipeWire and a GObject-based high-level library that
wraps PipeWires API, providing convenience for writing
the daemons modules as well as external tools for
managing PipeWire.
https://pipewire.pages.freedesktop.org/wireplumber/
comment "wireplumber needs a toolchain w/ wchar, threads and Lua >= 5.3"
depends on BR2_PACKAGE_PIPEWIRE
depends on BR2_USE_MMU
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
(!BR2_PACKAGE_LUA_5_3 && !BR2_PACKAGE_LUA_5_4)

View File

@ -0,0 +1,3 @@
# Locally calculated
sha256 41f174eaae5a630e195001fdd580918fa5143a71edceb050b320f85a8e65e53b wireplumber-0.4.2.tar.bz2
sha256 ff2eb9af5b05d92ac3a38cffcad27582ef555a31ff1781e1c1d4e087f77c9c81 LICENSE

View File

@ -0,0 +1,39 @@
################################################################################
#
# wireplumber
#
################################################################################
WIREPLUMBER_VERSION = 0.4.2
WIREPLUMBER_SOURCE = wireplumber-$(WIREPLUMBER_VERSION).tar.bz2
WIREPLUMBER_SITE = https://gitlab.freedesktop.org/pipewire/wireplumber/-/archive/$(WIREPLUMBER_VERSION)
WIREPLUMBER_LICENSE = MIT
WIREPLUMBER_LICENSE_FILES = LICENSE
WIREPLUMBER_DEPENDENCIES = host-pkgconf dbus pipewire libglib2 lua
WIREPLUMBER_CONF_OPTS = \
-Ddoc=disabled \
-Dsystem-lua=true \
-Dsystem-lua-version=
ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
WIREPLUMBER_DEPENDENCIES += gobject-introspection
WIREPLUMBER_CONF_OPTS += -Dintrospection=enabled
else
WIREPLUMBER_CONF_OPTS += -Dintrospection=disabled
endif
ifeq ($(BR2_PACKAGE_SYSTEMD),y)
WIREPLUMBER_DEPENDENCIES += systemd
WIREPLUMBER_CONF_OPTS += \
-Dsystemd=enabled \
-Dsystemd-system-service=true \
-Dsystemd-user-service=true
else
WIREPLUMBER_CONF_OPTS += \
-Dsystemd=disabled \
-Dsystemd-system-service=false \
-Dsystemd-user-service=false
endif
$(eval $(meson-package))