2012-11-21 11:12:43 -06:00
|
|
|
# Description: Lets users edit command lines as they are typed in
|
|
|
|
# URL: http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html
|
2013-02-02 01:54:23 +11:00
|
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
2012-11-21 11:12:43 -06:00
|
|
|
# Depends on: ncurses-32
|
|
|
|
|
|
|
|
name=readline-32
|
2017-02-15 20:44:19 +11:00
|
|
|
version=7.0
|
2012-11-21 11:12:43 -06:00
|
|
|
release=1
|
2017-02-15 20:44:19 +11:00
|
|
|
source=(http://ftp.gnu.org/gnu/readline/readline-${version:0:3}.tar.gz)
|
2012-11-21 11:12:43 -06:00
|
|
|
|
|
|
|
build() {
|
2014-03-19 19:09:56 +11:00
|
|
|
cd readline-${version:0:3}
|
2012-11-21 11:12:43 -06:00
|
|
|
|
2017-02-15 20:44:19 +11:00
|
|
|
./configure --prefix=/usr --libdir=/usr/lib32
|
2014-06-15 14:21:52 -05:00
|
|
|
make -j1 SHLIB_LIBS=-lncurses
|
|
|
|
make -j1 DESTDIR=$PKG install
|
2012-11-21 11:12:43 -06:00
|
|
|
|
|
|
|
install -d $PKG/lib32
|
|
|
|
mv $PKG/usr/lib32/lib*.so.* $PKG/lib32
|
2014-03-19 19:09:56 +11:00
|
|
|
ln -sf ../../lib32/libhistory.so.${version:0:3} $PKG/usr/lib32/libhistory.so
|
|
|
|
ln -sf ../../lib32/libreadline.so.${version:0:3} $PKG/usr/lib32/libreadline.so
|
2012-11-21 11:12:43 -06:00
|
|
|
|
2017-02-15 20:44:19 +11:00
|
|
|
rm -r $PKG/usr/{bin,include,share/man,share}
|
2012-11-21 11:12:43 -06:00
|
|
|
}
|