1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
install_data(
[
'gameover.ogg',
'sliding-1.ogg',
'sliding-n.ogg'
],
install_dir: soundsdir
)
# Make D-Bus activatable
service_conf = configuration_data()
service_conf.set('bindir', bindir)
service = project_id + '.service'
configure_file(
input: service + '.in',
output: service,
install: true,
install_dir: join_paths(datadir, 'dbus-1', 'services'),
configuration: service_conf
)
# Desktop file
desktop_file = i18n.merge_file(
input: '@0@.desktop.in'.format(project_id),
output: '@0@.desktop'.format(project_id),
po_dir: join_paths(meson.source_root(), 'po'),
type: 'desktop',
install: true,
install_dir: join_paths(get_option('datadir'), 'applications')
)
# Validate desktop file
if desktop_file_validate.found()
test(
'validate-desktop',
desktop_file_validate,
args: [
desktop_file.full_path()
]
)
endif
# AppData file
appdata_file = i18n.merge_file(
input: '@0@.appdata.xml.in'.format(project_id),
output: '@0@.appdata.xml'.format(project_id),
po_dir: join_paths(meson.source_root(), 'po'),
install: true,
install_dir: join_paths(get_option('datadir'), 'metainfo')
)
# Validate AppData file
if appstream_util.found()
test(
'validate-appdata', appstream_util,
args: [
'validate', '--nonet', appdata_file.full_path()
]
)
endif
install_data(
'@0@.gschema.xml'.format(project_id),
install_dir: join_paths(get_option('datadir'), 'glib-2.0', 'schemas')
)
install_man('@0@.6'.format(meson.project_name()))
subdir('icons')
subdir('themes')
|