core/readline/Pkgfile

19 lines
500 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Lets users edit command lines as they are typed in
# URL: http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html
# Maintainer: CRUX System Team, core-ports at crux dot nu
2006-02-23 16:26:10 +01:00
name=readline
2009-05-12 11:34:32 +02:00
version=6.0
2006-10-14 10:47:04 +02:00
release=1
2009-05-12 11:34:32 +02:00
source=(http://ftp.gnu.org/gnu/$name/$name-6.0.tar.gz \
inputrc)
2006-02-23 16:26:10 +01:00
build() {
2009-05-12 11:34:32 +02:00
cd $name-6.0
./configure --prefix=/usr --mandir=/usr/man
2006-02-23 16:26:10 +01:00
make
make DESTDIR=$PKG install
2006-10-14 10:47:04 +02:00
install -D -m 644 $SRC/inputrc $PKG/etc/inputrc
2006-02-23 16:26:10 +01:00
rm -rf $PKG/usr/info
}