mirror of
https://github.com/TakeV-Lambda/Tooth.git
synced 2024-11-01 05:30:23 +00:00
36 lines
1.1 KiB
Meson
36 lines
1.1 KiB
Meson
icons_dir = join_paths(get_option('datadir'), 'icons', 'hicolor')
|
|
scalable_dir = join_paths(icons_dir, 'scalable', 'apps')
|
|
symbolic_dir = join_paths(icons_dir, 'symbolic', 'apps')
|
|
|
|
install_data(
|
|
join_paths('icons', 'color.svg'),
|
|
install_dir: scalable_dir,
|
|
rename: meson.project_name() + '.svg'
|
|
)
|
|
install_data(
|
|
join_paths('icons', 'symbolic.svg'),
|
|
install_dir: symbolic_dir,
|
|
rename: meson.project_name() + '-symbolic.svg'
|
|
)
|
|
|
|
install_data(
|
|
meson.project_name() + '.gschema.xml',
|
|
install_dir: join_paths(get_option('prefix'), get_option('datadir'), 'glib-2.0', 'schemas')
|
|
)
|
|
|
|
i18n.merge_file(
|
|
input: meson.project_name() + '.desktop.in',
|
|
output: meson.project_name() + '.desktop',
|
|
po_dir: join_paths(meson.source_root(), 'po'),
|
|
type: 'desktop',
|
|
install: true,
|
|
install_dir: join_paths(get_option('datadir'), 'applications')
|
|
)
|
|
|
|
i18n.merge_file(
|
|
input: meson.project_name() + '.appdata.xml.in',
|
|
output: meson.project_name() + '.appdata.xml',
|
|
po_dir: join_paths(meson.source_root(), 'po'),
|
|
install: true,
|
|
install_dir: join_paths(get_option('datadir'), 'metainfo')
|
|
)
|