diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-12 12:49:29 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-12 12:49:29 -0500 |
commit | 99659c30e5369c3f02e286a4a6ec6fecd77f0416 (patch) | |
tree | 12110b15571365acae602ebd9c1348463a0d4710 /chapter8/ncurses.sh | |
parent | 0e5288f8f3bee7276d561cde029ed492e2ea85e6 (diff) | |
parent | 13c6afd35cab1e3f4d96857d549e02cfd1e23acd (diff) |
Merge branch 'chapter8'
Diffstat (limited to 'chapter8/ncurses.sh')
-rw-r--r-- | chapter8/ncurses.sh | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/chapter8/ncurses.sh b/chapter8/ncurses.sh new file mode 100644 index 0000000..918c829 --- /dev/null +++ b/chapter8/ncurses.sh @@ -0,0 +1,29 @@ +#!/bin/bash + +./configure --prefix=/usr \ + --mandir=/usr/share/man \ + --with-shared \ + --without-debug \ + --without-normal \ + --enable-pc-files \ + --enable-widec + +make +make -j1 install + +mv -v /usr/lib/libncursesw.so.6* /lib +ln -sfv ../../lib/"$(readlink /usr/lib/libncursesw.so)" /usr/lib/libncursesw.so +for lib in ncurses form panel menu ; do + rm -vf /usr/lib/lib"${lib}".so + echo "INPUT(-l${lib}w)" > /usr/lib/lib"${lib}".so + ln -sfv "${lib}"w.pc /usr/lib/pkgconfig/"${lib}".pc +done + +rm -vf /usr/lib/libcursesw.so +echo "INPUT(-lncursesw)" > /usr/lib/libcursesw.so +ln -sfv libncurses.so /usr/lib/libcurses.so + +rm -fv /usr/lib/libncurses++w.a + +mkdir -v /usr/share/doc/ncurses-"${VERSION}" +cp -v -R doc/* /usr/share/doc/ncurses-"${VERSION}" |