opt/nano/Pkgfile

21 lines
495 B
Plaintext
Raw Normal View History

2006-02-23 15:26:10 +00:00
# Description: GNU pico clone (a tiny text editor)
# URL: http://www.nano-editor.org
2006-04-13 21:43:04 +00:00
# Maintainer: Simone Rota, sip at crux dot nu
# Packager: Simone Rota, sip at crux dot nu
2006-02-23 15:26:10 +00:00
# Depends on:
name=nano
2007-04-23 15:11:57 +02:00
version=2.0.5
2006-02-23 15:26:10 +00: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 15:26:10 +00:00
build(){
cd $name-$version
2006-11-11 00:01:42 +01:00
./configure --prefix=/usr --disable-nls --mandir=/usr/man
2006-02-23 15:26:10 +00:00
make
make DESTDIR=$PKG install
2006-11-11 00:01:42 +01:00
rm -r $PKG/usr/share
rm $PKG/usr/bin/rnano $PKG/usr/man/man1/rnano.1
2006-02-23 15:26:10 +00:00
}