You've already forked hexagonrpc
mirror of
https://github.com/linux-msm/hexagonrpc.git
synced 2026-02-25 13:13:52 -08:00
16 lines
388 B
Meson
16 lines
388 B
Meson
systemd_units = [
|
|
'hexagonrpcd-adsp-rootpd.service',
|
|
'hexagonrpcd-adsp-sensorspd.service',
|
|
'hexagonrpcd-sdsp.service',
|
|
]
|
|
|
|
foreach unit : systemd_units
|
|
configure_file(
|
|
input: unit + '.in',
|
|
output: unit,
|
|
configuration: { 'bindir': get_option('prefix') / get_option('bindir') },
|
|
install: true,
|
|
install_dir: get_option('libdir') / 'systemd/system',
|
|
)
|
|
endforeach
|