mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-10 13:30:05 -05:00
pulse: add a small pulseaudio daemon
Add a small application that loads the pulse server and makes it listen on the pulseaudio socket. Add some systemd activation files to start the service.
This commit is contained in:
parent
10207456f0
commit
798bcc10b1
5 changed files with 181 additions and 1 deletions
|
|
@ -1,11 +1,19 @@
|
|||
systemd_user_services_dir = systemd.get_pkgconfig_variable('systemduserunitdir', define_variable : [ 'prefix', prefix])
|
||||
|
||||
install_data(sources : 'pipewire.socket', install_dir : systemd_user_services_dir)
|
||||
install_data(
|
||||
sources : ['pipewire.socket', 'pipewire-pulse.socket'],
|
||||
install_dir : systemd_user_services_dir)
|
||||
|
||||
systemd_config = configuration_data()
|
||||
systemd_config.set('PW_BINARY', join_paths(pipewire_bindir, 'pipewire'))
|
||||
systemd_config.set('PW_PULSE_BINARY', join_paths(pipewire_bindir, 'pipewire-pulse'))
|
||||
|
||||
configure_file(input : 'pipewire.service.in',
|
||||
output : 'pipewire.service',
|
||||
configuration : systemd_config,
|
||||
install_dir : systemd_user_services_dir)
|
||||
|
||||
configure_file(input : 'pipewire-pulse.service.in',
|
||||
output : 'pipewire-pulse.service',
|
||||
configuration : systemd_config,
|
||||
install_dir : systemd_user_services_dir)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue