1shout2_sources = ['gstshout2.c'] 2 3shout2_dep = dependency('shout', version : '>= 2.0', required : get_option('shout2')) 4 5if shout2_dep.found() 6 gstshout2 = library('gstshout2', 7 shout2_sources, 8 c_args : gst_plugins_good_args, 9 include_directories : [configinc, libsinc], 10 dependencies : [gstbase_dep, shout2_dep], 11 install : true, 12 install_dir : plugins_install_dir, 13 ) 14 pkgconfig.generate(gstshout2, install_dir : plugins_pkgconfig_install_dir) 15endif 16