1config BR2_PACKAGE_NCMPC 2 bool "ncmpc" 3 depends on BR2_USE_MMU # fork() 4 depends on BR2_INSTALL_LIBSTDCPP 5 depends on BR2_USE_WCHAR # boost 6 depends on BR2_TOOLCHAIN_HAS_THREADS # boost 7 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # C++17 8 select BR2_PACKAGE_BOOST 9 select BR2_PACKAGE_BOOST_SYSTEM 10 select BR2_PACKAGE_LIBMPDCLIENT 11 select BR2_PACKAGE_NCURSES 12 help 13 ncmpc is a fully featured MPD client, which runs in a terminal 14 (using ncurses). Its goal is to provide a keyboard oriented 15 and consistent interface to MPD, without wasting resources. 16 17 http://www.musicpd.org/clients/ncmpc/ 18 19comment "ncmpc needs a toolchain w/ C++, wchar, threads, gcc >= 7" 20 depends on BR2_USE_MMU 21 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \ 22 !BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_GCC_AT_LEAST_7 23