2016-12-14 00:12:03 +03:00
|
|
|
appdir = join_paths(get_option('datadir'), 'applications')
|
2017-06-15 07:10:55 +03:00
|
|
|
desktop_utils = find_program('desktop-file-validate', required: false)
|
2016-12-14 00:12:03 +03:00
|
|
|
|
|
|
|
if get_option('with-gtk')
|
2017-06-15 07:10:55 +03:00
|
|
|
hexchat_appdata = i18n.merge_file(
|
2017-12-24 20:09:36 +03:00
|
|
|
input: 'io.github.Hexchat.appdata.xml.in',
|
|
|
|
output: 'io.github.Hexchat.appdata.xml',
|
2016-12-14 00:12:03 +03:00
|
|
|
po_dir: '../../po',
|
|
|
|
install: true,
|
2018-01-23 02:42:51 +03:00
|
|
|
install_dir: join_paths(get_option('datadir'), 'metainfo')
|
2016-12-14 00:12:03 +03:00
|
|
|
)
|
|
|
|
|
2017-06-15 07:10:55 +03:00
|
|
|
appstream_util = find_program('appstream-util', required: false)
|
|
|
|
if appstream_util.found()
|
2017-12-24 20:09:36 +03:00
|
|
|
test('Validate io.github.Hexchat.appdata.xml', appstream_util,
|
2018-03-11 00:39:15 +03:00
|
|
|
args: ['validate-relax', hexchat_appdata]
|
2017-06-15 07:10:55 +03:00
|
|
|
)
|
|
|
|
endif
|
|
|
|
|
2016-12-14 00:12:03 +03:00
|
|
|
desktop_conf = configuration_data()
|
|
|
|
if get_option('with-dbus')
|
|
|
|
desktop_conf.set('exec_command', 'hexchat --existing %U')
|
|
|
|
else
|
|
|
|
desktop_conf.set('exec_command', 'hexchat %U')
|
|
|
|
endif
|
|
|
|
|
|
|
|
desktop_file = configure_file(
|
2017-12-24 20:09:36 +03:00
|
|
|
input: 'io.github.Hexchat.desktop.in.in',
|
|
|
|
output: 'io.github.Hexchat.desktop.in',
|
2016-12-14 00:12:03 +03:00
|
|
|
configuration: desktop_conf
|
|
|
|
)
|
|
|
|
|
2017-06-15 07:10:55 +03:00
|
|
|
hexchat_desktop = i18n.merge_file(
|
2016-12-14 00:12:03 +03:00
|
|
|
input: desktop_file,
|
2017-12-24 20:09:36 +03:00
|
|
|
output: 'io.github.Hexchat.desktop',
|
2016-12-14 00:12:03 +03:00
|
|
|
po_dir: '../../po',
|
|
|
|
type: 'desktop',
|
|
|
|
install: true,
|
|
|
|
install_dir: appdir
|
|
|
|
)
|
2017-06-15 07:10:55 +03:00
|
|
|
|
|
|
|
if desktop_utils.found()
|
2017-12-24 20:09:36 +03:00
|
|
|
test('Validate io.github.Hexchat.desktop', desktop_utils,
|
2017-06-15 07:10:55 +03:00
|
|
|
args: [hexchat_desktop]
|
|
|
|
)
|
|
|
|
endif
|
2016-12-14 00:12:03 +03:00
|
|
|
endif
|
|
|
|
|
|
|
|
if get_option('with-theme-manager')
|
2017-06-15 07:10:55 +03:00
|
|
|
htm_desktop = i18n.merge_file(
|
2017-12-24 20:09:36 +03:00
|
|
|
input: 'io.github.Hexchat.ThemeManager.desktop.in',
|
|
|
|
output: 'io.github.Hexchat.ThemeManager.desktop',
|
2016-12-14 00:12:03 +03:00
|
|
|
po_dir: '../../po',
|
|
|
|
type: 'desktop',
|
|
|
|
install: true,
|
|
|
|
install_dir: appdir
|
|
|
|
)
|
|
|
|
|
2017-06-15 07:10:55 +03:00
|
|
|
if desktop_utils.found()
|
2017-12-24 20:09:36 +03:00
|
|
|
test('Validate io.github.Hexchat.ThemeManager.desktop', desktop_utils,
|
2017-06-15 07:10:55 +03:00
|
|
|
args: [htm_desktop]
|
|
|
|
)
|
|
|
|
endif
|
|
|
|
|
2017-12-24 20:09:36 +03:00
|
|
|
install_data('io.github.Hexchat.ThemeManager.xml',
|
2016-12-14 00:12:03 +03:00
|
|
|
install_dir: join_paths(get_option('datadir'), 'mime/packages')
|
|
|
|
)
|
|
|
|
endif
|