]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - package/libmediaart/Config.in
e5e770d4fcc4635e416a09dab1758120000a33b0
[coffee/buildroot.git] / package / libmediaart / Config.in
1 comment "libmediaart needs a toolchain w/ wchar, threads"
2         depends on BR2_USE_MMU
3         depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
4
5 config 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
17 if BR2_PACKAGE_LIBMEDIAART
18
19 choice
20         prompt "media art backend"
21         default BR2_PACKAGE_LIBMEDIAART_BACKEND_NONE
22
23 config BR2_PACKAGE_MEDIAART_BACKEND_NONE
24         bool "none"
25         help
26           With no backend, libmediaart will not be able to process MP3
27           album art.
28
29 config BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF
30         bool "gdk-pixbuf"
31         select BR2_PACKAGE_GDK_PIXBUF
32
33 config BR2_PACKAGE_MEDIAART_BACKEND_QT
34         bool "Qt"
35         depends on BR2_PACKAGE_QT || BR2_PACKAGE_QT5
36         select BR2_PACKAGE_QT_GUI_MODULE if BR2_PACKAGE_QT
37         select BR2_PACKAGE_QT5BASE_GUI if BR2_PACKAGE_QT5
38
39 comment "Qt backend depends on Qt or Qt5"
40         depends on !BR2_PACKAGE_QT && !BR2_PACKAGE_QT5
41
42 endchoice
43
44 endif # BR2_PACKAGE_MEDIAART