systemd/catalog/meson.build

33 lines
992 B
Meson
Raw Normal View History

2023-04-12 17:00:04 +08:00
# SPDX-License-Identifier: LGPL-2.1-or-later
2022-05-14 02:56:24 +08:00
2023-04-12 17:00:04 +08:00
in_files = [
'systemd.bg.catalog',
'systemd.be.catalog',
'systemd.be@latin.catalog',
'systemd.de.catalog',
'systemd.fr.catalog',
'systemd.it.catalog',
'systemd.pl.catalog',
'systemd.pt_BR.catalog',
'systemd.ru.catalog',
'systemd.zh_CN.catalog',
'systemd.zh_TW.catalog',
'systemd.catalog']
2022-05-14 02:56:24 +08:00
support_url = get_option('support-url')
support_sed = 's~%SUPPORT_URL%~@0@~'.format(support_url)
foreach file : in_files
2023-04-12 17:00:04 +08:00
catalogs += custom_target(
2022-05-14 02:56:24 +08:00
file,
input : file + '.in',
output: file,
command : [sed, support_sed, '@INPUT@'],
capture : true,
install : true,
install_dir : catalogdir)
endforeach
meson.add_install_script('sh', '-c',
2023-04-12 17:00:04 +08:00
'test -n "$DESTDIR" || @0@/journalctl --update-catalog'.format(rootbindir))