793c5ad89d
Applying version bump of ncmpc to version 0.52 as proposed in [1]. As from version 0.50 of ncmpc, fmt got added as a dependency [2]. This was also added to package/ncmpc/Config.in and package/ncmpc/ncmpc.mk. For release notes, see: https://github.com/MusicPlayerDaemon/ncmpc/blob/v0.52/NEWS Comparision between version 0.49 and 0.52: https://github.com/MusicPlayerDaemon/ncmpc/compare/v0.49..v0.52 [1] https://lore.kernel.org/buildroot/20250707112536.1644236-1-tim.soubry@mind.be/T/#rb3b968fff23bac0298e33f473d63a1ad470d38e3 [2] https://github.com/MusicPlayerDaemon/ncmpc/commit/c3b0055d06f8e8efab7f388646beb7645b90d063 Signed-off-by: Tim Soubry <tim.soubry@mind.be> Tested-by: Andreas Ziegler <br015@umbiko.net> [Julien: change release note link to use tag] Signed-off-by: Julien Olivain <ju.o@free.fr>
23 lines
763 B
Plaintext
23 lines
763 B
Plaintext
config BR2_PACKAGE_NCMPC
|
|
bool "ncmpc"
|
|
depends on BR2_USE_MMU # fork()
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_USE_WCHAR
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_10 # C++20
|
|
select BR2_PACKAGE_FMT
|
|
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/
|
|
|
|
comment "ncmpc needs a toolchain w/ C++, wchar, threads, gcc >= 10"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
|
|
!BR2_TOOLCHAIN_HAS_THREADS || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_10
|