The Nano package contains a small, simple text editor which aims to replace Pico.
Download HTTP: https://www.nano-editor.org/dist/v9/nano-9.0.tar.xz
Download SHA256 Sum: 9f384374b496110a25b73ad5a5febb384783c6e3188b37063f677ac908013fde
Download Size: 1,702 KB
Estimated Disk Space: 22.4M
Estimated Build Time: less than 0.5 SBU
Prepare Nano for compilation:
Now Configure the Package, issue:
./configure --prefix=/usr \
--sysconfdir=/etc \
--enable-utf8 \
--docdir=/usr/share/doc/nano-9.0
To Compile the Package, issue:
make
Now Install the Package, issue:
make install
install -v -m644 doc/{nano.html,sample.nanorc} /usr/share/doc/nano-9.0
cat > /etc/nanorc << "EOF"
# Begin /etc/nanorc
set autoindent
# set boldtext
set constantshow
set fill 72
set historylog
set indicator
set multibuffer
set positionlog
set quickblank
set regexp
# set softwrap
set tabsize 4
include /usr/share/nano/c.nanorc
include /usr/share/nano/sh.nanorc
include /usr/share/nano/yaml.nanorc
# End /etc/nanorc
EOF