Config.in 739 B

123456789101112131415161718192021
  1. config 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
  6. depends on BR2_TOOLCHAIN_HAS_THREADS
  7. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_10 # C++20
  8. select BR2_PACKAGE_LIBMPDCLIENT
  9. select BR2_PACKAGE_NCURSES
  10. help
  11. ncmpc is a fully featured MPD client, which runs in a terminal
  12. (using ncurses). Its goal is to provide a keyboard oriented
  13. and consistent interface to MPD, without wasting resources.
  14. http://www.musicpd.org/clients/ncmpc/
  15. comment "ncmpc needs a toolchain w/ C++, wchar, threads, gcc >= 10"
  16. depends on BR2_USE_MMU
  17. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
  18. !BR2_TOOLCHAIN_HAS_THREADS || \
  19. !BR2_TOOLCHAIN_GCC_AT_LEAST_10