Files
zoitechat/data/misc/meson.build

108 lines
2.9 KiB
Meson
Raw Permalink Normal View History

appdir = join_paths(get_option('datadir'), 'applications')
2018-03-17 01:21:50 -04:00
metainfodir = join_paths(get_option('datadir'), 'metainfo')
mimedir = join_paths(get_option('datadir'), 'mime', 'packages')
desktop_utils = find_program('desktop-file-validate', required: false)
if get_option('gtk-frontend')
if get_option('install-appdata')
2026-01-05 23:12:38 -07:00
zoitechat_appdata = i18n.merge_file(
2026-01-14 12:54:25 -07:00
input: 'net.zoite.Zoitechat.appdata.xml.in',
output: 'net.zoite.Zoitechat.appdata.xml',
po_dir: '../../po',
install: true,
install_dir: metainfodir
)
appstream_util = find_program('appstream-util', required: false)
if appstream_util.found()
2026-01-14 12:54:25 -07:00
test('Validate net.zoite.Zoitechat.appdata.xml', appstream_util,
2026-01-05 23:12:38 -07:00
args: ['validate-relax', zoitechat_appdata]
)
endif
endif
desktop_conf = configuration_data()
if dbus_glib_dep.found()
2026-01-05 23:12:38 -07:00
desktop_conf.set('exec_command', 'zoitechat --existing %U')
else
2026-01-05 23:12:38 -07:00
desktop_conf.set('exec_command', 'zoitechat %U')
endif
desktop_file = configure_file(
2026-01-14 12:54:25 -07:00
input: 'net.zoite.Zoitechat.desktop.in.in',
output: 'net.zoite.Zoitechat.desktop.in',
configuration: desktop_conf
)
2026-01-05 23:12:38 -07:00
zoitechat_desktop = i18n.merge_file(
input: desktop_file,
2026-01-14 12:54:25 -07:00
output: 'net.zoite.Zoitechat.desktop',
po_dir: '../../po',
type: 'desktop',
install: true,
install_dir: appdir
)
if desktop_utils.found()
2026-01-14 12:54:25 -07:00
test('Validate net.zoite.Zoitechat.desktop', desktop_utils,
2026-01-05 23:12:38 -07:00
args: [zoitechat_desktop]
)
endif
endif
if get_option('plugin')
2018-03-17 01:21:50 -04:00
plugin_metainfo = []
# FIXME: These should all get translated somewhere
if get_option('with-checksum')
plugin_metainfo += [
2018-03-17 01:37:46 -04:00
['Checksum', 'Calculates a checksum for all sent and recieved DCC files', 'MIT']
2018-03-17 01:21:50 -04:00
]
endif
if get_option('with-fishlim')
plugin_metainfo += [
2018-03-17 01:37:46 -04:00
['Fishlim', 'Allows setting a key for encrypted conversations', 'MIT AND GPL-2.0+']
2018-03-17 01:21:50 -04:00
]
endif
if get_option('with-lua') != 'false'
plugin_metainfo += [
2018-03-17 01:37:46 -04:00
['Lua', 'Provides a scripting interface in Lua', 'MIT']
2018-03-17 01:21:50 -04:00
]
endif
if get_option('with-perl') != 'false'
2018-03-17 01:21:50 -04:00
plugin_metainfo += [
2018-03-17 01:37:46 -04:00
['Perl', 'Provides a scripting interface in Perl', 'GPL-2.0+']
2018-03-17 01:21:50 -04:00
]
endif
if get_option('with-python') != 'false'
plugin_metainfo += [
2018-03-17 01:37:46 -04:00
['Python', 'Provides a scripting interface in Python', 'GPL-2.0+']
2018-03-17 01:21:50 -04:00
]
endif
if get_option('with-sysinfo')
plugin_metainfo += [
2018-03-17 01:37:46 -04:00
['Sysinfo', 'Adds command to display system information', 'GPL-2.0+']
2018-03-17 01:21:50 -04:00
]
endif
foreach metainfo : plugin_metainfo
name = metainfo[0]
conf = configuration_data()
conf.set('NAME', name)
2018-03-17 01:37:46 -04:00
conf.set('SUMMARY', metainfo[1])
conf.set('LICENSE', metainfo[2])
2018-03-17 01:21:50 -04:00
configure_file(
2026-01-14 12:54:25 -07:00
input: 'net.zoite.Zoitechat.Plugin.metainfo.xml.in',
output: 'net.zoite.Zoitechat.Plugin.@0@.metainfo.xml'.format(name),
2018-03-17 01:21:50 -04:00
configuration: conf,
install_dir: get_option('install-plugin-metainfo') ? metainfodir : '',
)
endforeach
endif