2014-07-07 21:53:04 +02:00
|
|
|
config BR2_PACKAGE_NCMPC
|
|
|
|
bool "ncmpc"
|
|
|
|
depends on BR2_USE_MMU # fork()
|
2018-07-23 19:43:45 +02:00
|
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
2019-02-08 22:40:47 +01:00
|
|
|
depends on BR2_USE_WCHAR # boost
|
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # boost
|
2019-03-09 15:42:42 +01:00
|
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_6 # C++14
|
2019-02-08 22:40:47 +01:00
|
|
|
select BR2_PACKAGE_BOOST
|
|
|
|
select BR2_PACKAGE_BOOST_SYSTEM
|
2014-07-07 21:53:04 +02:00
|
|
|
select BR2_PACKAGE_LIBMPDCLIENT
|
|
|
|
select BR2_PACKAGE_NCURSES
|
|
|
|
help
|
|
|
|
ncmpc is a fully featured MPD client, which runs in a terminal
|
|
|
|
(using ncurses). Its goal is to provide a keyboard oriented
|
|
|
|
and consistent interface to MPD, without wasting resources.
|
|
|
|
|
|
|
|
http://www.musicpd.org/clients/ncmpc/
|
|
|
|
|
2019-03-09 15:42:42 +01:00
|
|
|
comment "ncmpc needs a toolchain w/ C++, wchar, threads, gcc >= 6"
|
2014-07-07 21:53:04 +02:00
|
|
|
depends on BR2_USE_MMU
|
2018-07-23 19:43:45 +02:00
|
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
|
2019-03-09 15:42:42 +01:00
|
|
|
!BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_GCC_AT_LEAST_6
|