blob: 2b553e9a50fbd114f700a806e6dc33697c6d5e39 (
plain)
1
2
3
4
5
6
7
8
9
|
pkg:setup
CFLAGS="-include term.h" pkg:configure --with-ncurses
# configure doesn't include ncurses/term.h and will error out without that CFLAG.
# (Due to a undefined `tgoto`)
pkg:make
pkg:install install-full
# Also installs headers and a static lib- uncomment for removal
# pkg: rm -rf ${PKG_TAPF}/{lib,include}
|