2016-04-04 22:08:32 +00:00
|
|
|
INSTRUCTIONS TO COMPILE AND INSTALL NANO GIT VERSIONS
|
2006-06-25 04:37:05 +00:00
|
|
|
=====================================================
|
2002-01-23 13:20:20 +00:00
|
|
|
|
2016-08-14 19:18:00 +00:00
|
|
|
The latest version of GNU nano is available via git, but building this needs
|
|
|
|
a bit more care than the official stable and unstable tarballs.
|
2002-01-23 13:20:20 +00:00
|
|
|
|
2006-06-25 04:37:05 +00:00
|
|
|
|
|
|
|
Prerequisites
|
|
|
|
-------------
|
|
|
|
|
2016-08-14 19:18:00 +00:00
|
|
|
To successfully compile GNU nano from the git repo, you'll need the following
|
2004-10-18 14:13:28 +00:00
|
|
|
packages:
|
2002-01-23 13:20:20 +00:00
|
|
|
|
2016-06-04 09:27:15 +00:00
|
|
|
- autoconf (version >= 2.61)
|
|
|
|
- automake (version >= 1.7)
|
|
|
|
- gettext (version >= 0.11.5)
|
|
|
|
- git (version >= 2.7.4)
|
|
|
|
- groff (version >= 1.12)
|
2016-06-04 09:20:29 +00:00
|
|
|
- pkg-config (version >= 0.22)
|
2016-06-04 09:27:15 +00:00
|
|
|
- texinfo (version >= 4.0)
|
|
|
|
- glib 2.x (in case your system doesn't have vsnprintf(), which the
|
|
|
|
configure script will check for)
|
|
|
|
- make, gcc, and
|
|
|
|
- the normal development libraries (curses or slang, etc.)
|
|
|
|
|
|
|
|
These should all be available in your distro's package manager or software
|
|
|
|
center, or otherwise on any GNU mirror. Note that you'll need a version of
|
|
|
|
curses or slang with wide character support if you want nano to use UTF-8.
|
2002-01-23 13:20:20 +00:00
|
|
|
|
2006-06-25 04:37:05 +00:00
|
|
|
|
|
|
|
Download the source
|
|
|
|
-------------------
|
|
|
|
|
2016-04-04 22:46:21 +00:00
|
|
|
To obtain the current nano development code (called 'master', or sometimes
|
|
|
|
'trunk'), use the following command. It will create a copy of the files in
|
|
|
|
a subdirectory of your current working directory called 'nano':
|
2006-06-25 04:37:05 +00:00
|
|
|
|
2016-04-04 22:08:32 +00:00
|
|
|
$ git clone git://git.savannah.gnu.org/nano.git nano
|
2004-11-21 17:45:25 +00:00
|
|
|
|
2007-01-28 19:49:05 +00:00
|
|
|
|
2006-06-25 04:37:05 +00:00
|
|
|
Generate the configure script
|
|
|
|
-----------------------------
|
|
|
|
|
|
|
|
Once you have the sources in the "nano" directory,
|
|
|
|
|
|
|
|
$ cd nano
|
|
|
|
$ ./autogen.sh
|
|
|
|
|
|
|
|
This will set up a configure script and a Makefile.in file.
|
|
|
|
|
|
|
|
|
|
|
|
Configure your build
|
|
|
|
--------------------
|
|
|
|
|
|
|
|
To configure your build, run the configure script from the nano source
|
|
|
|
directory:
|
|
|
|
|
|
|
|
$ ./configure [--add-options-here]
|
|
|
|
|
|
|
|
|
|
|
|
Build and install
|
|
|
|
-----------------
|
|
|
|
|
|
|
|
From the nano source directory, build the code with:
|
|
|
|
|
|
|
|
$ make
|
|
|
|
|
2016-04-04 22:46:21 +00:00
|
|
|
Then, once it's done compiling, run:
|
2006-06-25 04:37:05 +00:00
|
|
|
|
|
|
|
$ make install
|
|
|
|
|
2006-07-28 17:06:27 +00:00
|
|
|
which should copy various files (i.e. the nano executable, the info and
|
2006-06-25 04:37:05 +00:00
|
|
|
man pages, and syntax highlighting pattern files) to their appropriate
|
|
|
|
directories.
|
|
|
|
|
|
|
|
If you're installing into the default install directory (/usr/local),
|
|
|
|
you'll need to run that "make install" command with root privileges.
|
|
|
|
|
2004-11-21 17:45:25 +00:00
|
|
|
|
2006-06-25 04:37:05 +00:00
|
|
|
Problems?
|
|
|
|
---------
|
2002-01-23 13:20:20 +00:00
|
|
|
|
2016-04-04 22:08:32 +00:00
|
|
|
Please submit any bugs in the git repository using the Savannah project's
|
2014-04-15 12:13:04 +00:00
|
|
|
bug tracker (https://savannah.gnu.org/bugs/?group=nano).
|