The Wireplumber package contains a session and policy manager for Pipewire.
Development versions of BLFS may not build or run some packages properly if LFS or dependencies have been updated since the most recent stable versions of the books.
Download (HTTP): https://gitlab.freedesktop.org/pipewire/wireplumber/-/archive/0.5.6/wireplumber-0.5.6.tar.bz2
Download MD5 sum: 044a94903b020eeb8247510e394cd3f3
Download size: 408 KB
Estimated disk space required: 90 MB (with tests)
Estimated build time: 0.3 SBU (with tests)
elogind-255.5, GLib-2.82.2, and pipewire-1.2.6
Doxygen-1.12.0, lxml-5.3.0, sphinx-8.1.3, sphinx_rtd_theme-3.0.1, and Breathe
Install Wireplumber by running the following commands:
mkdir build && cd build && meson setup --prefix=/usr --buildtype=release -D system-lua=true .. && ninja
To test the results, issue: ninja test.
Now, as the root
user:
ninja install
--buildtype=release
:
Specify a buildtype suitable for stable releases of the package, as
the default may produce unoptimized binaries.
-D system-lua=true
: This
switch enables using the system version of Lua. Omit this switch if
you have not installed Lua, but note that meson will download and install it's own
version.
In order for Wireplumber to be used by Pipewire, Wireplumber must be configured to start when a desktop environment is started.
First, create a shell script that will start Wireplumber and
Pipewire in the correct order as the root
user:
cat > /usr/bin/pipewire-launcher.sh << "EOF"
#!/bin/sh
# Begin /usr/bin/pipewire-launcher.sh
# Start Pipewire first.
exec /usr/bin/pipewire &
# Wait for a second for Pipewire to launch.
sleep 1
# Start Wireplumber now that Pipewire has been started.
exec /usr/bin/wireplumber &
# End /usr/bin/pipewire-launcher.sh
EOF
Next, make this shell script executable as the root
user:
chmod +x /usr/bin/pipewire-launcher.sh
Finally, create an XDG Autostart file that will run /usr/bin/pipewire-launcher.sh
when a desktop environment is started, as the root
user:
cat > /etc/xdg/autostart/pipewire.desktop << "EOF"
[Desktop Entry]
Version=1.0
Name=Pipewire
Comment=Starts the Pipewire and Wireplumber daemons
Exec=/usr/bin/pipewire-launcher.sh
Terminal=false
Type=Application
EOF
Now that Wireplumber is configured to start when a desktop environment is started, it is recommended that you log out of your session and log back in again.