%general-entities; %patches-entities; ]> Bzip2-&bzip2-version; 64 Bit Bzip2 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="../common/bzip2.xml" xpointer="xpointer(//*[@role='package']/para[1])"/> <segmentedlist> <segtitle>&buildtime;</segtitle> <segtitle>&diskspace;</segtitle> <seglistitem> <seg>Not checked yet</seg> <seg>Not checked yet</seg> </seglistitem> </segmentedlist> <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="../common/bzip2.xml" xpointer="xpointer(//*[@role='package']/segmentedlist[2])"/> </sect2> <sect2 role="installation"> <title>Installation of Bzip2 We need to remove the tests since they won't work on a multi-architecture build, and tell change the default lib path to lib64: sed -i -e 's@^\(all:.*\) test@\1@g' \ -e 's@/lib\(/\| \|$\)@/lib64\1@g' Makefile make -f Makefile-libbz2_so CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" make clean make CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" Now we remove the 32 bit versions of the programs so we can install the 64 bit versions. rm -f /usr/bin/bz* /bin/bz* cp bzip2-shared /bin/bzip2 cp -a libbz2.so* /lib64 ln -s ../../lib64/libbz2.so.1.0 /usr/lib64/libbz2.so rm /usr/bin/{bunzip2,bzcat,bzip2} ln -s bzip2 /bin/bzcat