gnome-chess/data/meson.build
Bilal Elmoussaoui 9b910aa520 app-id: unify the app-id
Use org.gnome.Chess as the app-id and follow the new freedesktop standards for appdata/desktop/icons files names
https://www.freedesktop.org/software/appstream/docs/chap-Quickstart.html
2019-01-09 14:20:33 +01:00

38 lines
863 B
Meson

subdir('icons')
# The SVGs of the chess pieces
install_subdir('pieces',
install_dir: join_paths(datadir, meson.project_name())
)
# The engines.conf file
install_data('engines.conf',
install_dir: pkgsysconfdir,
)
# The desktop file
i18n.merge_file(
input: '@0@.desktop.in'.format(application_id),
output: '@0@.desktop'.format(application_id),
type: 'desktop',
po_dir: po_dir,
install: true,
install_dir: join_paths(datadir, 'applications')
)
# The appdata file
i18n.merge_file(
input: '@0@.appdata.xml.in'.format(application_id),
output: '@0@.appdata.xml'.format(application_id),
type: 'xml',
po_dir: po_dir,
install: true,
install_dir: join_paths(datadir, 'metainfo')
)
install_data('@0@.gschema.xml'.format(application_id),
install_dir: join_paths(datadir, 'glib-2.0', 'schemas')
)
# The man page
install_man('gnome-chess.6')