Difference between revisions of "LZO2"
From CBLFS
Jump to navigationJump to search (→Multilib) |
|||
Line 39: | Line 39: | ||
Compile the package: | Compile the package: | ||
− | CC="gcc ${BUILDN32}" ./configure --prefix=/usr --enable-shared\ | + | CC="gcc ${BUILDN32}" ./configure --prefix=/usr --enable-shared \ |
--libdir=/usr/lib32 && | --libdir=/usr/lib32 && | ||
make | make | ||
Line 51: | Line 51: | ||
Compile the package: | Compile the package: | ||
− | CC="gcc ${BUILD64}" ./configure --prefix=/usr --enable-shared | + | CC="gcc ${BUILD64}" ./configure --prefix=/usr --enable-shared \ |
--libdir=/usr/lib64 && | --libdir=/usr/lib64 && | ||
make | make |
Revision as of 18:14, 23 September 2006
Download Source: | http://www.oberhumer.com/opensource/lzo/download/lzo-2.02.tar.gz |
---|
Dependencies
Non-Multilib
Compile the package:
./configure --prefix=/usr --enable-shared && make
Install the package
make install && install -v -m755 -d /usr/share/doc/lzo-2.02 && install -v -m644 doc/* /usr/share/doc/lzo-2.02
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" ./configure --prefix=/usr --enable-shared && make
Install the package
make install
N32
Compile the package:
CC="gcc ${BUILDN32}" ./configure --prefix=/usr --enable-shared \ --libdir=/usr/lib32 && make
Install the package
make install
64Bit
Compile the package:
CC="gcc ${BUILD64}" ./configure --prefix=/usr --enable-shared \ --libdir=/usr/lib64 && make
Install the package
make install && install -v -m755 -d /usr/share/doc/lzo-2.02 && install -v -m644 doc/* /usr/share/doc/lzo-2.02