2022-08-28 01:32:15 +00:00
|
|
|
gnome = import('gnome')
|
|
|
|
|
|
|
|
subdir('ui')
|
|
|
|
|
2022-08-15 18:33:41 +00:00
|
|
|
desktop_file = i18n.merge_file(
|
|
|
|
input: configure_file(
|
|
|
|
input: '@0@.desktop.in.in'.format(PROJECT_RDNN_NAME),
|
|
|
|
output: '@BASENAME@',
|
|
|
|
configuration: conf
|
|
|
|
),
|
|
|
|
output: '@0@.desktop'.format(APPLICATION_ID),
|
|
|
|
type: 'desktop',
|
|
|
|
po_dir: '../po',
|
|
|
|
install: true,
|
|
|
|
install_dir: join_paths(get_option('datadir'), 'applications')
|
|
|
|
)
|
2022-07-17 11:46:05 +00:00
|
|
|
|
2022-08-15 18:33:41 +00:00
|
|
|
desktop_utils = find_program('desktop-file-validate', required: false)
|
|
|
|
if desktop_utils.found()
|
|
|
|
test('Validate desktop file', desktop_utils,
|
2022-08-28 01:32:15 +00:00
|
|
|
args: [desktop_file.full_path()]
|
2022-07-17 11:46:05 +00:00
|
|
|
)
|
|
|
|
endif
|
|
|
|
|
2022-08-28 01:32:15 +00:00
|
|
|
gnome.compile_resources('gradience',
|
|
|
|
'gradience.gresource.xml',
|
|
|
|
gresource_bundle: true,
|
|
|
|
source_dir: meson.current_build_dir(),
|
|
|
|
install: true,
|
|
|
|
install_dir: PKGDATA_DIR,
|
2022-09-13 16:29:43 +00:00
|
|
|
dependencies: blueprints
|
2022-08-28 01:32:15 +00:00
|
|
|
)
|
|
|
|
|
2022-07-17 11:46:05 +00:00
|
|
|
appstream_file = i18n.merge_file(
|
2022-08-15 18:33:41 +00:00
|
|
|
input: configure_file(
|
|
|
|
input: '@0@.appdata.xml.in.in'.format(PROJECT_RDNN_NAME),
|
|
|
|
output: '@BASENAME@',
|
|
|
|
configuration: configuration_data({
|
|
|
|
'APP_ID': APPLICATION_ID,
|
|
|
|
'PROJECT_URL': PROJECT_URL,
|
|
|
|
'BUGTRACKER_URL': BUGTRACKER_URL,
|
|
|
|
'HELP_URL': HELP_URL,
|
|
|
|
'TRANSLATE_URL': TRANSLATE_URL
|
|
|
|
})
|
|
|
|
),
|
|
|
|
output: '@0@.appdata.xml'.format(APPLICATION_ID),
|
2022-07-17 11:46:05 +00:00
|
|
|
po_dir: '../po',
|
|
|
|
install: true,
|
|
|
|
install_dir: join_paths(get_option('datadir'), 'appdata')
|
|
|
|
)
|
|
|
|
|
|
|
|
appstream_util = find_program('appstream-util', required: false)
|
|
|
|
if appstream_util.found()
|
|
|
|
test('Validate appstream file', appstream_util,
|
2022-08-28 01:32:15 +00:00
|
|
|
args: ['validate', appstream_file.full_path()]
|
2022-07-17 11:46:05 +00:00
|
|
|
)
|
|
|
|
endif
|
|
|
|
|
2022-08-15 18:33:41 +00:00
|
|
|
configure_file(
|
|
|
|
input: '@0@.gschema.xml.in'.format(PROJECT_RDNN_NAME),
|
|
|
|
output: '@0@.gschema.xml'.format(APPLICATION_ID),
|
|
|
|
configuration: conf,
|
|
|
|
install: true,
|
2022-07-17 11:46:05 +00:00
|
|
|
install_dir: join_paths(get_option('datadir'), 'glib-2.0/schemas')
|
|
|
|
)
|
|
|
|
|
|
|
|
compile_schemas = find_program('glib-compile-schemas', required: false)
|
|
|
|
if compile_schemas.found()
|
|
|
|
test('Validate schema file', compile_schemas,
|
|
|
|
args: ['--strict', '--dry-run', meson.current_source_dir()]
|
|
|
|
)
|
|
|
|
endif
|
|
|
|
|
|
|
|
subdir('icons')
|
2022-09-22 12:32:37 +00:00
|
|
|
subdir('plugins')
|