1config BR2_PACKAGE_NCURSES 2 bool "ncurses" 3 help 4 The Ncurses (new curses) library is a free software 5 emulation of curses in System V Release 4.0, and more. 6 7 This package installs only a few vital termcap entries 8 9 https://invisible-island.net/ncurses/ 10 11if BR2_PACKAGE_NCURSES 12 13config BR2_PACKAGE_NCURSES_WCHAR 14 bool "enable wide char support" 15 depends on BR2_USE_WCHAR 16 help 17 Enable wide char & UTF-8 support in ncurses libraries 18 19config BR2_PACKAGE_NCURSES_TARGET_PROGS 20 bool "ncurses programs" 21 help 22 Include ncurses programs in target (clear, reset, tput, ...) 23 24config BR2_PACKAGE_NCURSES_ADDITIONAL_TERMINFO 25 string "additional terminfo files to install" 26 help 27 Whitespace separated list of terminfo files to install on the 28 target. A small number of vital terminfo files are always 29 installed. This list is in addition to the vital ones. 30 31 The terminfo filenames should have the single letter path 32 prefix. e.g. t/tmux. 33 34endif 35