opt/nano/Pkgfile

20 lines
527 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: GNU pico clone (a tiny text editor)
2009-01-26 18:10:12 +01:00
# URL: http://www.nano-editor.org
# Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de
# Packager: Simone Rota, sip at crux dot nu
2006-02-23 16:26:10 +01:00
name=nano
2008-09-07 02:33:26 +02:00
version=2.0.9
2006-02-23 16:26:10 +01:00
release=1
2006-11-11 00:01:42 +01:00
source=(http://www.nano-editor.org/dist/v2.0/$name-$version.tar.gz)
2006-02-23 16:26:10 +01:00
build(){
2009-01-26 18:10:12 +01:00
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
2006-02-23 16:26:10 +01:00
}
2009-01-26 18:10:12 +01:00