Commit | Line | Data |
---|---|---|
6dca1d21 JB |
1 | # Description: Lets users edit command lines as they are typed in |
2 | # URL: http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html | |
3 | # Maintainer: CRUX System Team, core-ports at crux dot nu | |
b751b192 | 4 | # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu |
7f8f7f35 | 5 | # Depends on: ncurses |
6dca1d21 JB |
6 | |
7 | name=readline | |
f4849e73 VM |
8 | version=6.3.8 |
9 | release=2 | |
7f8f7f35 | 10 | source=(http://ftp.gnu.org/gnu/$name/$name-${version::3}.tar.gz \ |
a3da6e34 | 11 | $name-$version.patch.gz inputrc $name-$version-wcwidth.patch) |
6dca1d21 JB |
12 | |
13 | build() { | |
7f8f7f35 VM |
14 | cd $name-${version::3} |
15 | ||
16 | gunzip -c $SRC/$name-$version.patch.gz | patch -p0 | |
17 | ||
18 | # Don't use rpath for linking the shared libs | |
19 | sed -i '117s/-Wl,-rpath,$(libdir)//' support/shobj-conf | |
20 | ||
f4849e73 | 21 | # Patch to avoid wcwidth tests |
a3da6e34 VM |
22 | patch -i $SRC/$name-$version-wcwidth.patch |
23 | ||
6dca1d21 JB |
24 | ./configure --build=$CHOST \ |
25 | --host=$CTARGET \ | |
f4849e73 VM |
26 | --prefix=/usr |
27 | make -j1 SHLIB_LIBS=-lncurses | |
28 | make -j1 DESTDIR=$PKG install | |
7f8f7f35 VM |
29 | |
30 | install -d $PKG/lib | |
31 | mv $PKG/usr/lib/lib*.so.* $PKG/lib | |
9fdb659b VM |
32 | ln -sf ../../lib/libhistory.so.${version:0:3} $PKG/usr/lib/libhistory.so |
33 | ln -sf ../../lib/libreadline.so.${version:0:3} $PKG/usr/lib/libreadline.so | |
7f8f7f35 | 34 | |
6dca1d21 | 35 | install -D -m 644 $SRC/inputrc $PKG/etc/inputrc |
f4849e73 | 36 | rm -r $PKG/usr/share/{doc,info} |
6dca1d21 | 37 | } |