libgnt/libgnt

925328c4d988
Fix up some of the debian packaging with special thanks to hlieberman

Testing Done:
Build and installed in a container without issue.

Reviewed at https://reviews.imfreedom.org/r/275/
#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;
}