2020-08-04 23:09:05 -04:00
|
|
|
if build_gui
|
2020-08-05 21:15:32 -04:00
|
|
|
i18n.merge_file(
|
|
|
|
input: 'tuf-manager.desktop.in',
|
|
|
|
output: 'tuf-manager.desktop',
|
|
|
|
po_dir: join_paths(meson.source_root(), 'po'),
|
|
|
|
type: 'desktop',
|
|
|
|
install: true,
|
|
|
|
install_dir: join_paths(get_option('datadir'), 'applications')
|
|
|
|
)
|
2020-08-15 16:43:34 -04:00
|
|
|
|
2020-08-07 16:17:15 -04:00
|
|
|
if build_tray
|
|
|
|
i18n.merge_file(
|
|
|
|
input: 'tuf-tray.desktop.in',
|
|
|
|
output: 'tuf-tray.desktop',
|
|
|
|
po_dir: join_paths(meson.source_root(), 'po'),
|
|
|
|
type: 'desktop',
|
|
|
|
install: true,
|
|
|
|
install_dir: join_paths(get_option('sysconfdir'), 'xdg', 'autostart')
|
|
|
|
)
|
|
|
|
endif
|
2020-08-04 23:09:05 -04:00
|
|
|
endif
|
|
|
|
|
|
|
|
subdir('dbus')
|
|
|
|
subdir('polkit')
|
|
|
|
subdir('ui')
|
|
|
|
subdir('icons')
|
|
|
|
subdir('gschema')
|
2020-08-15 16:43:34 -04:00
|
|
|
subdir('man')
|
2020-08-29 11:03:49 -04:00
|
|
|
subdir('openrc')
|
|
|
|
subdir('runit')
|
|
|
|
subdir('s6')
|
|
|
|
subdir('systemd')
|