Files
sysprof/data/meson.build
Christian Hergert dfe2dbe9bc build: remove org.gnome.sysprof3 gsettings schema
We don't use this anymore, so we can just delete it.
2022-07-22 12:37:53 -07:00

31 lines
821 B
Meson

if get_option('gtk') and get_option('libsysprof')
install_data('sysprof-mime.xml',
install_dir: join_paths(datadir, 'mime/packages')
)
i18n.merge_file(
input: 'org.gnome.Sysprof.appdata.xml.in',
output: 'org.gnome.Sysprof.appdata.xml',
po_dir: podir,
install: true,
install_dir: join_paths(datadir, 'metainfo')
)
i18n.merge_file(
input: 'org.gnome.Sysprof.desktop.in',
output: 'org.gnome.Sysprof.desktop',
type: 'desktop',
po_dir: podir,
install: true,
install_dir: join_paths(datadir, 'applications')
)
icon_sizes = ['scalable', 'symbolic']
foreach size: icon_sizes
install_subdir('icons/' + size,
install_dir: join_paths(datadir, 'icons/hicolor')
)
endforeach
endif