opt/nano/Pkgfile

19 lines
480 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01: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 16:26:10 +01:00
name=nano
2023-01-20 10:47:25 +01:00
version=7.2
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 16:26:10 +01: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 16:26:10 +01:00
}