description="A simple text editor which aims to replace Pico, the default editor in the Pine package."
url="http://www.nano-editor.org/"
packager="pierre at nutyx dot org, tnut at nutyx dot org, Sipo"

name=nano
version=2.8.5
release=1

source=(http://www.nano-editor.org/dist/v${version:0:3}/$name-$version.tar.xz)

build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--enable-utf8     \
--enable-color \
--enable-multibuffer \
--enable-nanorc \
--docdir=/usr/share/doc/nano-$version \
--disable-x
make
make DESTDIR=$PKG install
mkdir -p $PKG/etc/nano
rm $PKG/usr/share/info/dir
}
