1comment "libmediaart needs a toolchain w/ wchar, threads" 2 depends on BR2_USE_MMU 3 depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS 4 5config BR2_PACKAGE_LIBMEDIAART 6 bool "libmediaart" 7 depends on BR2_USE_MMU # glib2 8 depends on BR2_USE_WCHAR # glib2 9 depends on BR2_TOOLCHAIN_HAS_THREADS # glib2 10 select BR2_PACKAGE_LIBGLIB2 11 help 12 Library tasked with managing, extracting and handling media 13 art caches 14 15 https://github.com/GNOME/libmediaart 16 17if BR2_PACKAGE_LIBMEDIAART 18 19choice 20 prompt "media art backend" 21 default BR2_PACKAGE_LIBMEDIAART_BACKEND_NONE 22 23config BR2_PACKAGE_LIBMEDIAART_BACKEND_NONE 24 bool "none" 25 help 26 With no backend, libmediaart will not be able to process MP3 27 album art. 28 29config BR2_PACKAGE_LIBMEDIAART_BACKEND_GDK_PIXBUF 30 bool "gdk-pixbuf" 31 select BR2_PACKAGE_GDK_PIXBUF 32 33config BR2_PACKAGE_LIBMEDIAART_BACKEND_QT 34 bool "Qt" 35 depends on BR2_PACKAGE_QT5 36 select BR2_PACKAGE_QT5BASE_GUI 37 38comment "Qt backend depends on Qt5" 39 depends on !BR2_PACKAGE_QT5 40 41endchoice 42 43endif # BR2_PACKAGE_LIBMEDIAART 44