JNotes/data/meson.build
Jeena b07ce820cd Initial commit
The only thing working is showing the users calendars in the sidebar.
2024-01-26 16:49:29 +09:00

36 lines
1.1 KiB
Meson

desktop_file = i18n.merge_file(
input: 'net.jeena.jnotes.desktop.in',
output: 'net.jeena.jnotes.desktop',
type: 'desktop',
po_dir: '../po',
install: true,
install_dir: get_option('datadir') / 'applications'
)
desktop_utils = find_program('desktop-file-validate', required: false)
if desktop_utils.found()
test('Validate desktop file', desktop_utils, args: [desktop_file])
endif
appstream_file = i18n.merge_file(
input: 'net.jeena.jnotes.metainfo.xml.in',
output: 'net.jeena.jnotes.metainfo.xml',
po_dir: '../po',
install: true,
install_dir: get_option('datadir') / 'metainfo'
)
appstreamcli = find_program('appstreamcli', required: false, disabler: true)
test('Validate appstream file', appstreamcli,
args: ['validate', '--no-net', '--explain', appstream_file])
install_data('net.jeena.jnotes.gschema.xml',
install_dir: get_option('datadir') / 'glib-2.0' / 'schemas'
)
compile_schemas = find_program('glib-compile-schemas', required: false, disabler: true)
test('Validate schema file',
compile_schemas,
args: ['--strict', '--dry-run', meson.current_source_dir()])
subdir('icons')