diff options
Diffstat (limited to 'chapter6/ncurses.sh')
-rw-r--r-- | chapter6/ncurses.sh | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/chapter6/ncurses.sh b/chapter6/ncurses.sh new file mode 100644 index 0000000..b2721d3 --- /dev/null +++ b/chapter6/ncurses.sh @@ -0,0 +1,26 @@ +#!/bin/bash + +sed -i s/mawk// configure && + +mkdir build +pushd build > /dev/null + ../configure && + make -C include && + make -C progs tic && +popd > /dev/null + +./configure --prefix=/usr \ + --host=${LFS_TGT} \ + --build=$(./config.guess) \ + --mandir=/usr/share/man \ + --with-manpage-format=normal \ + --with-shared \ + --without-debug \ + --without-ada \ + --without-normal \ + --enable-widec && +make && +make DESTDIR=${LFS} TIC_PATH=$(pwd)/build/progs/tic -j1 install && +echo "INPUT(-lncursesw)" > ${LFS}/usr/lib/libncurses.so && +mv -v ${LFS}/usr/lib/libncursesw.so.6* ${LFS}/lib && +ln -sfv ../../lib/$(readlink ${LFS}/usr/lib/libncursesw.so) ${LFS}/usr/lib/libncursesw.so
\ No newline at end of file |