core/readline/Pkgfile

20 lines
577 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-18 10:26:41 +02:00
version=6.0.3
release=1
2009-05-12 11:34:32 +02:00
source=(http://ftp.gnu.org/gnu/$name/$name-6.0.tar.gz \
2009-05-18 10:26:41 +02:00
$name-6.0-001-003.patch inputrc)
2006-02-23 16:26:10 +01:00
build() {
2009-05-12 11:34:32 +02:00
cd $name-6.0
2009-05-18 10:26:41 +02:00
patch -p0 -i $SRC/$name-6.0-001-003.patch
2009-05-12 11:34:32 +02:00
./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
2009-05-13 21:20:35 +02:00
rm -r $PKG/usr/share/info
2006-02-23 16:26:10 +01:00
}