mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
bump version to 2022.02.9
add miyoo_defconfig
This commit is contained in:
22
package/wireplumber/Config.in
Normal file
22
package/wireplumber/Config.in
Normal 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 PipeWire’s API, providing convenience for writing
|
||||
the daemon’s 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)
|
||||
3
package/wireplumber/wireplumber.hash
Normal file
3
package/wireplumber/wireplumber.hash
Normal file
@@ -0,0 +1,3 @@
|
||||
# Locally calculated
|
||||
sha256 41f174eaae5a630e195001fdd580918fa5143a71edceb050b320f85a8e65e53b wireplumber-0.4.2.tar.bz2
|
||||
sha256 ff2eb9af5b05d92ac3a38cffcad27582ef555a31ff1781e1c1d4e087f77c9c81 LICENSE
|
||||
43
package/wireplumber/wireplumber.mk
Normal file
43
package/wireplumber/wireplumber.mk
Normal file
@@ -0,0 +1,43 @@
|
||||
################################################################################
|
||||
#
|
||||
# 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 pipewire libglib2 lua
|
||||
|
||||
WIREPLUMBER_CONF_OPTS = \
|
||||
-Ddoc=disabled \
|
||||
-Dsystem-lua=true \
|
||||
-Dsystem-lua-version=
|
||||
|
||||
ifeq ($(BR2_PACKAGE_DBUS),y)
|
||||
WIREPLUMBER_DEPENDENCIES += dbus
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
|
||||
WIREPLUMBER_DEPENDENCIES += host-doxygen host-python-lxml 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))
|
||||
Reference in New Issue
Block a user