# Contributor: Michael Mason # Maintainer: Natanael Copa pkgname=nano pkgver=2.8.7 pkgrel=0 pkgdesc="Text editor designed to be a free replacement for the Pico text editor" url="https://www.nano-editor.org/" arch="all" license="GPL" makedepends="ncurses-dev file-dev" subpackages="$pkgname-doc $pkgname-syntax::noarch" source="https://www.nano-editor.org/dist/v${pkgver%.*}/$pkgname-$pkgver.tar.gz" builddir="$srcdir/$pkgname-$pkgver" build() { cd "$builddir" ./configure \ --build=$CBUILD \ --host=$CHOST \ --prefix=/usr \ --sysconfdir=/etc \ --mandir=/usr/share/man \ --infodir=/usr/share/info \ --disable-nls \ --with-wordbounds make } check() { cd "$builddir" make check } package() { cd "$builddir" make DESTDIR="$pkgdir" install install -Dm644 doc/sample.nanorc \ "$pkgdir"/etc/nanorc # Proper syntax highlighting for APKBUILDs sed -i "/syntax/s/\"$/\" \"APKBUILD&/" \ "$pkgdir"/usr/share/nano/sh.nanorc rm -rf "$pkgdir"/usr/lib/charset.alias } syntax() { pkgdesc="Syntax highlighting definitions for $pkgname" mkdir -p "$subpkgdir"/usr/share/$pkgname/ mv "$pkgdir"/usr/share/$pkgname/*.nanorc \ "$subpkgdir"/usr/share/$pkgname/ } sha512sums="511b57f8fe82872827829bca91f7a8666a6ee75924cf2c853332ddd0467abf281c6d3cbaa5dd208c579cbace5bef23d36bd7b62be116aa2175262ed1d15aaf79 nano-2.8.7.tar.gz"