I might change that to:
| For installation (i.e., "make install"), a POSIX compliant machine with a
| terminfo database should be sufficient. Note that terminfo might come
| bundled in a package named "curses", "ncurses" or some variant of it,
| which you may need to install (for example, on Debian-based systems,
| "sudo apt-get install libncurses5-dev").
| Choose the simplest variant of this package, as ne does not actually
use curses (a virtual
| screen library), but just the underlying terminfo database.
(Also, note the minor typo in the README: missing closing double-quote
after "make install".)
One last thing: in the INSTALL doc, it says
~~~
make
sudo make install
~~~
but further down says that `make install` will build then install. So,
it would seem that you don't even need that first `make` step...
Also, if specifying a PREFIX, would you also need to do that in the
plain `make` step (along with the `make install` step)? If so, I'd
suggest that 2nd section at the top of INSTALL be filled out to look
like:
~~~
make PREFIX=/home/<you>/opt
make PREFIX=/home/<you>/opt install
~~~
And then to avoid repitition, below, where it says "which will be its
global directory. For example:", I think you can remove the "For
example: make PREFIX=/home/myname/opt" and just add a "(see above)"
to the paragraph, like so:
"The PREFIX make variable (see above) decides where ne will be
installed and which will be its global directory."
---John