pidgin/purple-plugin-pack

Merged in default (pull request #16)

2020-03-01, Gary Kramlich
f3a36b4938cd
Merged in default (pull request #16)

Remove the debug option as it's meson reserved and we should just turn this on by default

Approved-by: Elliott Sales de Andrade
if TYPES.contains('incomplete') and PIDGIN.found()
ignorance_confdir = join_paths(
get_option('prefix'),
get_option('sysconfdir'),
'pidgin')
install_data('ignorance.conf', install_dir : ignorance_confdir)
ignorance = shared_module('ignorance',
'ignorance.c',
'ignorance_level.c',
'ignorance_rule.c',
'ignorance_violation.c',
'ignorance_denizen.c',
'callbacks.c',
'interface.c',
'support.c',
c_args : [
'-DIGNORANCE_CONFDIR="@0@"'.format(ignorance_confdir),
],
dependencies : [PIDGIN, GTK],
name_prefix : '',
install : true,
install_dir : PIDGIN_LIBDIR)
PP_PIDGIN_BUILD += 'ignorance'
endif