This package provides the reference implementation of the vp8 Codec from the WebM project, used in most current html5 video.
This package is known to build and work properly using an LFS-7.4 platform.
Download (HTTP): http://webm.googlecode.com/files/libvpx-v1.2.0.tar.bz2
Download MD5 sum: 4eab3775d178d44e084525ed978bcd9a
Download size: 1.7 MB
Estimated disk space required: 23 MB (without the documentation)
Estimated build time: 0.4 SBU
yasm-1.2.0 (compiling with NASM-2.10.09 is currently broken) and Which-2.20 (so configure can find yasm)
Doxygen-1.8.5 and PHP-5.5.3 (to build the documentation).
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/libvpx
Install libvpx by running the following commands:
mkdir ../libvpx-build && cd ../libvpx-build && ../libvpx-v1.2.0/configure --prefix=/usr \ --enable-shared \ --disable-static && make
This package does not come with a test suite.
Now, as the root
user:
make install
mkdir ../libvpx-build && cd ../libvpx-build: The libvpx developers recommend building in a dedicated build directory.
--disable-static
: This switch prevents
building of static versions of libraries.
Last updated on 2013-09-05 23:58:21 -0700