mirror of
https://codeberg.org/flk/meta-wayland.git
synced 2025-02-13 15:32:54 +01:00
foot: add hack to build terminfo
I didn't manage to build foot terminfo with ncurses-native. Since the last foot update, TERM=foot has been set as the default. That makes the problem urgent, because now there are no more ncurses applications running in the terminal. Add a hack to the recipe instead of hiding the problem by setting TERM=xterm inside the image again. Hosts 'tic' can create terminfo. Make use of it. You need to install ncurses-bin on your build machine.
This commit is contained in:
parent
c1e5bc0173
commit
2a3f1b2233
@ -36,6 +36,13 @@ PACKAGECONFIG ?= " \
|
|||||||
grapheme-clustering \
|
grapheme-clustering \
|
||||||
"
|
"
|
||||||
|
|
||||||
|
# Hack! tic from ncurses-native fails to generate the terminfo files. Use hosts tic instead.
|
||||||
|
# ncurses-bin needs to be installed.
|
||||||
|
do_install:append() {
|
||||||
|
install -d ${D}${datadir}/foot/terminfo
|
||||||
|
/usr/bin/tic -o ${D}${datadir}/foot/terminfo -x -e foot,foot-direct ${S}/foot.info
|
||||||
|
}
|
||||||
|
|
||||||
inherit meson pkgconfig features_check
|
inherit meson pkgconfig features_check
|
||||||
|
|
||||||
FILES:${PN} = " \
|
FILES:${PN} = " \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user