core/readline/Pkgfile

29 lines
834 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
2021-05-04 18:16:36 +02:00
# URL: https://tiswww.cwru.edu/php/chet/readline/rltop.html
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: ncurses
2006-02-23 16:26:10 +01:00
name=readline
2022-10-07 12:57:13 +02:00
version=8.2.1
2016-07-13 14:28:01 +02:00
release=1
2021-12-13 11:53:24 +01:00
source=(http://ftpmirror.gnu.org/gnu/$name/$name-${version:0:3}.tar.gz
2023-08-21 21:49:13 +02:00
$name-$version.patch.gz inputrc)
2006-02-23 16:26:10 +01:00
build() {
2023-08-21 21:49:13 +02:00
cd $name-${version:0:3}
2017-02-15 18:56:47 +01:00
2023-08-21 21:49:13 +02:00
gunzip -c $SRC/$name-$version.patch.gz | patch -p0
2022-10-07 12:57:13 +02:00
2023-08-21 21:49:13 +02:00
./configure --prefix=/usr
make -j1 SHLIB_LIBS=-lncurses
make -j1 DESTDIR=$PKG install
2023-08-21 21:49:13 +02:00
install -d $PKG/lib
mv $PKG/usr/lib/lib*.so.* $PKG/lib
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
2021-05-04 18:16:36 +02:00
2023-08-21 21:49:13 +02:00
install -D -m 644 $SRC/inputrc $PKG/etc/inputrc
rm -r $PKG/usr/share/{doc,info}
2006-02-23 16:26:10 +01:00
}