mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-01-19 13:37:39 +00:00
4d6fc2dabb
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1329 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
22 lines
648 B
XML
22 lines
648 B
XML
<sect2>
|
|
<title>Installation of Ncurses</title>
|
|
|
|
<para>Install Ncurses by running the following commands:</para>
|
|
|
|
<para><screen><userinput>./configure --prefix=/usr --libdir=/lib \
|
|
--with-shared --disable-termcap &&
|
|
make &&
|
|
make install &&
|
|
cd /lib &&
|
|
mv *.a /usr/lib &&
|
|
chmod 755 *.5.2 &&
|
|
cd /usr/lib &&
|
|
ln -sf libncurses.a libcurses.a &&
|
|
ln -sf ../../lib/libncurses.so &&
|
|
ln -sf ../../lib/libcurses.so &&
|
|
ln -sf ../../lib/libform.so &&
|
|
ln -sf ../../lib/libpanel.so &&
|
|
ln -sf ../../lib/libmenu.so</userinput></screen></para>
|
|
</sect2>
|
|
|