21 lines
495 B
Plaintext
21 lines
495 B
Plaintext
# Description: GNU pico clone (a tiny text editor)
|
|
# URL: http://www.nano-editor.org
|
|
# Maintainer: Simone Rota, sip at crux dot nu
|
|
# Packager: Simone Rota, sip at crux dot nu
|
|
# Depends on:
|
|
|
|
name=nano
|
|
version=2.0.7
|
|
release=1
|
|
source=(http://www.nano-editor.org/dist/v2.0/$name-$version.tar.gz)
|
|
|
|
build(){
|
|
cd $name-$version
|
|
./configure --prefix=/usr --disable-nls --mandir=/usr/man
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm -r $PKG/usr/share
|
|
rm $PKG/usr/bin/rnano $PKG/usr/man/man1/rnano.1
|
|
}
|
|
|