packagekit/contrib/meson.build
Richard Hughes 80906e2867 yum: Remove unmaintained backend
This is only used in RHEL 7 which is not going to get rebased to this brand new
PackageKit branch.
2020-01-10 09:06:26 +00:00

24 lines
524 B
Meson

if get_option('gstreamer_plugin')
subdir('gstreamer-plugin')
endif
if get_option('gtk_module')
subdir('gtk-module')
endif
if get_option('bash_command_not_found')
subdir('command-not-found')
endif
if get_option('bash_completion')
bash_completion_dep = dependency('bash-completion', version: '>=2.0')
install_data(
'pkcon',
install_dir: bash_completion_dep.get_pkgconfig_variable('completionsdir', define_variable: ['prefix', get_option('prefix')])
)
endif
if get_option('cron')
subdir('cron')
endif