blob: 01f0cb5f5540e9cb88d9bc08c795637a559e9059 (
plain)
1 # Description: GNU pico clone (a tiny text editor)
2 # URL: http://www.nano-editor.org
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Packager: Simone Rota, sip at crux dot nu
5 # Depends on: file ncurses
6
7 name=nano
8 version=2.8.1
9 release=1
10 source=(http://www.nano-editor.org/dist/v2.8/$name-$version.tar.xz)
11
12 build(){
13 cd $name-$version
14 ./configure --prefix=/usr --disable-nls
15 make
16 make DESTDIR=$PKG install
17 install -D -m 644 doc/sample.nanorc $PKG/usr/etc/nanorc
18 rm -r $PKG/usr/share/{doc,info}
19 }
|