2006-02-23 15:26:10 +00:00
|
|
|
# Description: GNU pico clone (a tiny text editor)
|
2021-02-24 11:49:08 +01:00
|
|
|
# URL: https://www.nano-editor.org
|
|
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
|
|
# Depends on: file ncurses bzip2 xz
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
name=nano
|
2024-05-02 11:35:56 +02:00
|
|
|
version=8.0
|
2015-12-06 18:23:19 +01:00
|
|
|
release=1
|
2020-06-06 13:00:05 +02:00
|
|
|
source=(https://www.nano-editor.org/dist/v${version%%.*}/$name-$version.tar.xz)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build(){
|
2021-02-24 11:49:08 +01:00
|
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr --disable-nls
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
install -D -m 644 doc/sample.nanorc $PKG/usr/etc/nanorc
|
|
|
|
rm -r $PKG/usr/share/{doc,info}
|
2006-02-23 15:26:10 +00:00
|
|
|
}
|