core/readline/Pkgfile

20 lines
555 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-03-07 10:56:25 +01:00
version=5.2.13
2006-10-14 10:47:04 +02:00
release=1
2009-03-07 10:56:25 +01:00
source=(http://ftp.gnu.org/gnu/$name/$name-5.2.tar.gz \
$name-5.2-001-013.patch inputrc)
2006-02-23 16:26:10 +01:00
build() {
2009-03-07 10:56:25 +01:00
cd $name-5.2
patch -p0 -i $SRC/$name-5.2-001-013.patch
2006-02-23 16:26:10 +01:00
./configure --prefix=/usr
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
}