mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2025-12-31 20:36:25 +00:00
We use org.gnome.Sysprof3 for the sysprofd daemon, but we need not complicate the application with such an application id.
35 lines
932 B
Meson
35 lines
932 B
Meson
if get_option('gtk') and get_option('libsysprof')
|
|
install_data('sysprof-mime.xml',
|
|
install_dir: join_paths(datadir, 'mime/packages')
|
|
)
|
|
|
|
install_data('org.gnome.sysprof3.gschema.xml',
|
|
install_dir: join_paths(datadir, 'glib-2.0/schemas')
|
|
)
|
|
|
|
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
|