libgnt/libgnt

Overhaul the convey builds

2021-09-27, Gary Kramlich
34678c8af458
Overhaul the convey builds

Testing Done:
Ran `convey debian-bullseye-amd64 debian-bookworm-amd64 fedora-34-amd64` and verified everything worked properly.

Reviewed at https://reviews.imfreedom.org/r/953/
#include <ncurses.h>
int main()
{
int ch;
initscr();
noecho();
cbreak();
refresh();
WINDOW *win = newpad(20, 30);
box(win, 0, 0);
prefresh(win, 0, 0, 0, 0, 19, 29);
doupdate();
while ((ch = getch())) {
printw("%d ", ch);
refresh();
}
endwin();
return 0;
}