diff options
author | Oz Tiram <[email protected]> | 2025-04-01 09:46:32 +0200 |
---|---|---|
committer | Luke from DC <[email protected]> | 2025-04-04 22:19:13 +0000 |
commit | 2085c6c8e734ec64081b08be6df13b1ebdf6adb8 (patch) | |
tree | 87ba096574a44a78d8f6332572e1d7adba9e2842 /data | |
parent | 27fc5fef126e173d922db3aa22df12ed6a4aa6ea (diff) | |
download | atril-2085c6c8e734ec64081b08be6df13b1ebdf6adb8.tar.bz2 atril-2085c6c8e734ec64081b08be6df13b1ebdf6adb8.tar.xz |
chore: remove unused intltool
Signed-off-by: Oz Tiram <[email protected]>
Diffstat (limited to 'data')
-rw-r--r-- | data/meson.build | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/data/meson.build b/data/meson.build index ea61da21..a24f6ebb 100644 --- a/data/meson.build +++ b/data/meson.build @@ -31,20 +31,20 @@ desktop = configure_file( configuration: desktop_conf, ) -custom_target( - 'desktop', +i18n.merge_file( input: desktop, output: 'atril.desktop', - command: [intltool_merge, '-d', '-u', po_dir, '@INPUT@', '@OUTPUT@'], + type: 'desktop', + po_dir: po_dir, install: true, install_dir: desktopdir, ) -appdata = custom_target( - 'appdata', +appdata = i18n.merge_file( input: 'atril.appdata.xml.in', output: 'atril.appdata.xml', - command: [intltool_merge, '-x', '-u', po_dir, '@INPUT@', '@OUTPUT@'], + type: 'xml', + po_dir: po_dir, install: true, install_dir: join_paths(datadir, 'metainfo'), ) |