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