diff options
Diffstat (limited to '')
-rw-r--r-- | src/daemon/systemd/system/meson.build | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/daemon/systemd/system/meson.build b/src/daemon/systemd/system/meson.build new file mode 100644 index 0000000..84ca0b0 --- /dev/null +++ b/src/daemon/systemd/system/meson.build @@ -0,0 +1,15 @@ +systemd_system_services_dir = systemd.get_variable('systemdsystemunitdir', pkgconfig_define : [ 'rootprefix', prefix]) +if get_option('systemd-system-unit-dir') != '' + systemd_system_services_dir = get_option('systemd-system-unit-dir') +endif + +install_data(sources : 'pipewire.socket', + install_dir : systemd_system_services_dir) + +systemd_config = configuration_data() +systemd_config.set('PW_BINARY', pipewire_bindir / 'pipewire') + +configure_file(input : 'pipewire.service.in', + output : 'pipewire.service', + configuration : systemd_config, + install_dir : systemd_system_services_dir) |