summaryrefslogtreecommitdiff
path: root/systemd/user/meson.build
blob: fdce339e405c0a26a689057f7e289eb311fad82b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
systemd_user_unit_dir = get_option('systemd_user_unit_dir')
if systemd_user_unit_dir == ''
  systemd_user_unit_dir = join_paths(get_option('prefix'), 'lib', 'systemd', 'user')
endif

# copy the system socket unit to the "user" directory
install_data(
  join_paths('..', 'system', 'mpd.socket'),
  install_dir: systemd_user_unit_dir,
)

configure_file(
  input: 'mpd.service.in',
  output: 'mpd.service',
  configuration: systemd_unit_conf,
  install_dir: systemd_user_unit_dir,
)