From subsecret
Revision as of 12:44, 21 April 2013 by Steffen Mikkelsen (talk | contribs) (Created page with "==gzip== tar xf gzip-1.4.tar.gz cd gzip-1.4 ./configure --prefix=/tools make -j 12 make install cd .. ==bzip2== tar xf bzip2-1.0.6.tar.gz cd bzip2-1.0.6 make -j 12...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

gzip

tar xf gzip-1.4.tar.gz
cd gzip-1.4
./configure --prefix=/tools
make -j 12
make install
cd ..

bzip2

tar xf bzip2-1.0.6.tar.gz
cd bzip2-1.0.6
make -j 12
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 12
make install
cd ..

We are now ready for next step