qulogic/libgnt

Fix versioning of libraries.
meson
2017-06-20, Elliott Sales de Andrade
45b8fe807070
Fix versioning of libraries.

Also, don't bother setting version and soversion since one can be
determined from the other.
#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;
}