aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06/bzip2-inst.xml
diff options
context:
space:
mode:
authorTimothy Bauscher <timothy@linuxfromscratch.org>2003-01-17 02:59:00 +0000
committerTimothy Bauscher <timothy@linuxfromscratch.org>2003-01-17 02:59:00 +0000
commit8d1f93246647d335cf3d191b1ad2ca6030dde126 (patch)
treeb89be55d715c986846f51c18550f76ed0577ae5b /chapter06/bzip2-inst.xml
parent3b181cb9ed630df64334b83690499041272241d5 (diff)
Billy's bzip2 layout.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2364 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/bzip2-inst.xml')
-rw-r--r--chapter06/bzip2-inst.xml32
1 files changed, 27 insertions, 5 deletions
diff --git a/chapter06/bzip2-inst.xml b/chapter06/bzip2-inst.xml
index 44a254ed4..4ff56528b 100644
--- a/chapter06/bzip2-inst.xml
+++ b/chapter06/bzip2-inst.xml
@@ -1,18 +1,40 @@
+<sect2><title>&nbsp;</title><para>&nbsp;</para></sect2>
+
<sect2>
<title>Installation of Bzip2</title>
-<para>Install Bzip2 by running the following commands:</para>
+<para>Compile the package:</para>
+<para><screen><userinput>
+make -f Makefile-libbz2_so &amp;&amp;
+make
+</userinput></screen></para>
+
+<para>And finish off installing the package:</para>
+
+<para><screen><userinput>
+make install</userinput></screen></para>
+
+<para>Copy the Bzip2 binary into the /bin directory, make some
+ neccessary symbolic links and clean up.</para>
-<para><screen><userinput>make -f Makefile-libbz2_so &amp;&amp;
-make &amp;&amp;
-make install &amp;&amp;
+<para><screen><userinput>
cp bzip2-shared /bin/bzip2 &amp;&amp;
cp -a libbz2.so* /lib &amp;&amp;
ln -s ../../lib/libbz2.so.1.0 /usr/lib/libbz2.so &amp;&amp;
rm /usr/bin/{bunzip2,bzcat,bzip2} &amp;&amp;
mv /usr/bin/{bzip2recover,bzless,bzmore} /bin &amp;&amp;
ln -s bzip2 /bin/bunzip2 &amp;&amp;
-ln -s bzip2 /bin/bzcat</userinput></screen></para>
+ln -s bzip2 /bin/bzcat
+</userinput></screen></para>
</sect2>
+<sect2>
+<title>Command explanations</title>
+
+<para><userinput>make -f Makefile-libbz2_so:</userinput> This will cause bzip2
+to be built using a different Makefile file, in this case the
+Makefile-libbz2_so file, which creates a dynamic libbz2.so library and
+links the bzip2 utilities against it.</para>
+
+</sect2>