2006-02-23 15:26:10 +00:00
|
|
|
# Description: Lets users edit command lines as they are typed in
|
2020-05-29 12:23:15 +02:00
|
|
|
# URL: https://tiswww.cwru.edu/php/chet/readline/rltop.html
|
2007-01-23 17:25:18 +00:00
|
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
2010-03-06 18:13:37 +01:00
|
|
|
# Depends on: ncurses
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
name=readline
|
2020-02-08 09:20:15 +01:00
|
|
|
version=8.0.4
|
2016-07-13 14:28:01 +02:00
|
|
|
release=1
|
2017-03-02 14:25:08 +01:00
|
|
|
source=(http://ftpmirror.gnu.org/gnu/$name/$name-${version:0:3}.tar.gz \
|
2019-08-18 17:06:38 +02:00
|
|
|
$name-$version.patch.gz inputrc)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build() {
|
2017-02-15 18:56:47 +01:00
|
|
|
cd $name-${version:0:3}
|
|
|
|
|
2019-08-18 17:06:38 +02:00
|
|
|
gunzip -c $SRC/$name-$version.patch.gz | patch -p0
|
|
|
|
|
2015-07-25 21:15:45 +02:00
|
|
|
./configure --prefix=/usr
|
2014-03-06 10:38:17 +01:00
|
|
|
make -j1 SHLIB_LIBS=-lncurses
|
|
|
|
make -j1 DESTDIR=$PKG install
|
2011-03-02 12:39:09 +01:00
|
|
|
|
2010-06-03 10:26:18 +00:00
|
|
|
install -d $PKG/lib
|
|
|
|
mv $PKG/usr/lib/lib*.so.* $PKG/lib
|
2012-09-19 08:01:54 -05:00
|
|
|
ln -sf ../../lib/libhistory.so.${version:0:3} $PKG/usr/lib/libhistory.so
|
|
|
|
ln -sf ../../lib/libreadline.so.${version:0:3} $PKG/usr/lib/libreadline.so
|
2010-06-03 10:26:18 +00:00
|
|
|
|
2006-10-14 08:47:04 +00:00
|
|
|
install -D -m 644 $SRC/inputrc $PKG/etc/inputrc
|
2014-03-04 15:33:11 +01:00
|
|
|
rm -r $PKG/usr/share/{doc,info}
|
2006-02-23 15:26:10 +00:00
|
|
|
}
|