mirror of
https://github.com/linux-speakup/espeakup.git
synced 2026-08-09 09:19:09 +02:00
Allows building the service files without a systemd dependency by defining a default systemd user unit directory. Relevant in Alpine, where we can package the service files in a subpackage without having systemd in Alpine. Addresses feedback of https://github.com/linux-speakup/espeakup/pull/64, therefore superseeds it.
4 lines
152 B
Meson
4 lines
152 B
Meson
systemd = dependency('systemd')
|
|
if (systemd.found() and get_option('systemd').allowed()) or get_option('systemd').enabled()
|
|
subdir('systemd')
|
|
endif
|