compat-32/readline-32/Pkgfile

25 lines
758 B
Plaintext
Raw Normal View History

# Description: Lets users edit command lines as they are typed in
2022-01-11 12:22:58 +01:00
# URL: https://tiswww.case.edu/php/chet/readline/rltop.html
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
2019-08-27 13:48:19 +02:00
# Depends on: ncurses-32
name=readline-32
2022-01-11 12:22:58 +01:00
version=8.1.2
release=1
2019-03-10 07:01:50 +01:00
source=(https://ftp.gnu.org/gnu/${name%-*}/${name%-*}-${version:0:3}.tar.gz)
build() {
2022-01-11 12:22:58 +01:00
cd ${name%-*}-${version:0:3}
2017-03-02 12:22:15 +01:00
2022-01-11 12:22:58 +01:00
./configure --prefix=/usr --libdir=/usr/lib32
make -j1 SHLIB_LIBS=-lncurses
make -j1 DESTDIR=$PKG install
2022-01-11 12:22:58 +01:00
install -d $PKG/lib32
mv $PKG/usr/lib32/lib*.so.* $PKG/lib32
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
2022-01-11 12:22:58 +01:00
rm -r $PKG/usr/{bin,include,share/man,share}
}