From subsecret
m (Steffen Mikkelsen moved page Installing gzip, bzip2, make to Installing gzip, bzip2, xz, make) |
No edit summary |
||
Line 1: | Line 1: | ||
==gzip== | ==gzip== | ||
tar xf gzip-1. | tar xf gzip-1.5.tar.gz | ||
cd gzip-1. | cd gzip-1.5 | ||
./configure --prefix=/tools | ./configure --prefix=/tools | ||
make -j | make -j 8 | ||
make install | make install | ||
cd .. | cd .. | ||
Line 11: | Line 11: | ||
tar xf bzip2-1.0.6.tar.gz | tar xf bzip2-1.0.6.tar.gz | ||
cd bzip2-1.0.6 | cd bzip2-1.0.6 | ||
make -j | make -j 8 | ||
make install PREFIX=/tools | make install PREFIX=/tools | ||
make clean | make clean | ||
Line 24: | Line 24: | ||
cd make-3.82 | cd make-3.82 | ||
./configure --prefix=/tools | ./configure --prefix=/tools | ||
make -j | make -j 8 | ||
make install | make install | ||
cd .. | cd .. | ||
We are now ready for next step | We are now ready for next step |
Revision as of 13:04, 9 May 2013
gzip
tar xf gzip-1.5.tar.gz cd gzip-1.5 ./configure --prefix=/tools make -j 8 make install cd ..
bzip2
tar xf bzip2-1.0.6.tar.gz cd bzip2-1.0.6 make -j 8 make install PREFIX=/tools make clean make -f Makefile-libbz2_so cp *.so* /tools/lib/ ln -s /tools/lib/libbz2.so.1.0 /tools/lib/libbz2.so.1 cd ..
make
tar xf make-3.82.tar.gz cd make-3.82 ./configure --prefix=/tools make -j 8 make install cd ..
We are now ready for next step