core/readline/Pkgfile

31 lines
929 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
# Depends on: ncurses
2006-02-23 16:26:10 +01:00
name=readline
2016-09-19 19:26:28 +02:00
version=7.0
2016-07-13 14:28:01 +02:00
release=1
2016-10-05 13:33:21 +02:00
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz \
2016-07-13 14:28:01 +02:00
inputrc)
2006-02-23 16:26:10 +01:00
build() {
2016-07-13 14:28:01 +02:00
cd $name-$version
2014-03-31 19:51:34 +02:00
./configure --prefix=/usr
make -j1 SHLIB_LIBS=-lncurses
make -j1 DESTDIR=$PKG install
2011-03-02 12:39:09 +01: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
# Compatibility symlinks, remove later
ln -s libreadline.so.7.0 $PKG/lib/libreadline.so.6
ln -s libhistory.so.7.0 $PKG/lib/libhistory.so.6
2006-10-14 10:47:04 +02: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 16:26:10 +01:00
}