12 <procedure> |
10 <procedure> |
13 <step> |
11 <step> |
14 Download the latest source archive from |
12 Download the latest source archive from |
15 <a href="https://sourceforge.net/projects/ucx/files/">Source Forge</a> and extract it somewhere on your machine. |
13 <a href="https://sourceforge.net/projects/ucx/files/">Source Forge</a> and extract it somewhere on your machine. |
16 You can also use the command line to do this. |
14 You can also use the command line to do this. |
17 <code-block lang="sh"> |
15 <code-block lang="shell"> |
18 wget -O libucx.tgz https://sourceforge.net/projects/ucx/files/latest |
16 wget -O libucx.tgz https://sourceforge.net/projects/ucx/files/latest |
19 tar -xzf libucx.tgz |
17 tar -xzf libucx.tgz |
20 cd libucx |
18 cd libucx |
21 </code-block> |
19 </code-block> |
22 </step> |
20 </step> |
23 <step> |
21 <step> |
24 Configure the build according to your preferences. You can get a list of |
22 Configure the build according to your preferences. You can get a list of |
25 all available options with <code>./configure --help</code>. |
23 all available options with <code>./configure --help</code>. |
26 The recommended configuration for production builds is <code>./configure --release</code>. |
24 The recommended configuration for production builds is <code>./configure --release</code>. |
27 <code-block lang="sh"> |
25 <code-block lang="shell"> |
28 ./configure --release |
26 ./configure --release |
29 make |
27 make |
30 make check |
28 make check |
31 sudo make install |
29 sudo make install |
32 </code-block> |
30 </code-block> |