diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-06-01 14:12:52 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-06-01 14:13:30 -0500 |
commit | 021e47332465d1e1ce02ec3fe6c360aab88d9c34 (patch) | |
tree | 73a0aafa0fc0309ccb22d40d92bd08c6de3308a9 | |
parent | 64ba00afc7d9bd36fcce41108ef11b3774f0fbfe (diff) |
Remove termlib and tic-depends and tinfo.
-rw-r--r-- | chapter8/ncurses.sh | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/chapter8/ncurses.sh b/chapter8/ncurses.sh index 94d1b3c..c7ba368 100644 --- a/chapter8/ncurses.sh +++ b/chapter8/ncurses.sh @@ -7,16 +7,14 @@ set -e --without-debug \ --without-normal \ --enable-pc-files \ - --enable-widec \ - --with-termlib \ - --disable-tic-depends && + --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 tinfo ; do +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 |