LZO is a data compression library which is suitable for data decompression and compression in real-time. This means it favors speed over compression ratio.
This package is known to build and work properly using an LFS-7.5 platform.
Download (HTTP): http://www.oberhumer.com/opensource/lzo/download/lzo-2.06.tar.gz
Download MD5 sum: 95380bd4081f85ef08c5209f4107e9f8
Download size: 572 KB
Estimated disk space required: 10 MB
Estimated build time: 0.3 SBU (additional 0.3 SBU to run the tests)
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/lzo
Install LZO by running the following commands:
./configure --prefix=/usr \ --enable-shared \ --disable-static \ --docdir=/usr/share/doc/lzo-2.06 && make
To test the results, issue: make check. All the checks should pass. Now issue make test to run the full suite of tests.
Now, as the root
user:
make install
--disable-static
: This
switch prevents installation of static versions of the libraries.
Last updated on 2014-02-21 16:09:26 -0800