Subversion Repository

Parent Directory Parent Directory | Revision Log Revision Log


Revision 378 - (show annotations)
Sun Oct 4 15:02:59 2009 UTC (3 years, 7 months ago) by cjg
File size: 527 byte(s)
nano: fixed to 2.0.9-1
1 # Description: GNU pico clone (a tiny text editor)
2 # URL: http://www.nano-editor.org
3 # Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de
4 # Packager: Simone Rota, sip at crux dot nu
5
6 name=nano
7 version=2.0.9
8 release=1
9 source=(http://www.nano-editor.org/dist/v2.0/$name-$version.tar.gz)
10
11 build(){
12 cd $name-$version
13 ./configure --prefix=/usr --disable-nls --mandir=/usr/man
14 make
15 make DESTDIR=$PKG install
16 rm -r $PKG/usr/share
17 rm $PKG/usr/bin/rnano $PKG/usr/man/man1/rnano.1
18 }
19