blob: 4ff56528b3b51f80ca37b78a6aa9199ceadb70ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
<sect2><title> </title><para> </para></sect2>
<sect2>
<title>Installation of Bzip2</title>
<para>Compile the package:</para>
<para><screen><userinput>
make -f Makefile-libbz2_so &&
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>
cp bzip2-shared /bin/bzip2 &&
cp -a libbz2.so* /lib &&
ln -s ../../lib/libbz2.so.1.0 /usr/lib/libbz2.so &&
rm /usr/bin/{bunzip2,bzcat,bzip2} &&
mv /usr/bin/{bzip2recover,bzless,bzmore} /bin &&
ln -s bzip2 /bin/bunzip2 &&
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>
|