CRUX PPC
A lightweight GNU/Linux distribution for PowerPC!
Subversion Repository
Parent Directory
|
Revision Log
Revision 720 -
(show annotations)
Sun Oct 4 15:09:24 2009 UTC (3 years, 7 months ago) by cjg
File size: 495 byte(s)
Sun Oct 4 15:09:24 2009 UTC (3 years, 7 months ago) by cjg
File size: 495 byte(s)
importing opt
| 1 | # Description: GNU pico clone (a tiny text editor) |
| 2 | # URL: http://www.nano-editor.org |
| 3 | # Maintainer: Simone Rota, sip at crux dot nu |
| 4 | # Packager: Simone Rota, sip at crux dot nu |
| 5 | # Depends on: |
| 6 | |
| 7 | name=nano |
| 8 | version=2.0.8 |
| 9 | release=1 |
| 10 | source=(http://www.nano-editor.org/dist/v2.0/$name-$version.tar.gz) |
| 11 | |
| 12 | build(){ |
| 13 | cd $name-$version |
| 14 | ./configure --prefix=/usr --disable-nls --mandir=/usr/man |
| 15 | make |
| 16 | make DESTDIR=$PKG install |
| 17 | rm -r $PKG/usr/share |
| 18 | rm $PKG/usr/bin/rnano $PKG/usr/man/man1/rnano.1 |
| 19 | } |
| 20 |