summaryrefslogtreecommitdiff
path: root/units/user/meson.build
blob: 36341a42f5abf48a22fadd7b075a18fb49a761ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# SPDX-License-Identifier: LGPL-2.1+

units = [
        'basic.target',
        'bluetooth.target',
        'default.target',
        'exit.target',
        'graphical-session-pre.target',
        'graphical-session.target',
        'paths.target',
        'printer.target',
        'shutdown.target',
        'smartcard.target',
        'sockets.target',
        'sound.target',
        'timers.target',
        'systemd-exit.service',
        'systemd-tmpfiles-clean.timer',
]

foreach file : units
        install_data(file,
                     install_dir : userunitdir)
endforeach

in_units = [
        'systemd-tmpfiles-clean.service',
        'systemd-tmpfiles-setup.service',
]

foreach file : in_units
        gen = configure_file(
                input : file + '.in',
                output : file,
                configuration : substs)
        install_data(gen,
                     install_dir : userunitdir)
endforeach