The libvorbis package contains a general purpose audio and music encoding format. This is useful for creating (encoding) and playing (decoding) sound in an open (patent free) format.
This package is known to build and work properly using an LFS-7.4 platform.
Download (HTTP): http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.3.tar.xz
Download MD5 sum: 71b649d3e08e63ece16649df906ce8b9
Download size: 1.1 MB
Estimated disk space required: 18 MB
Estimated build time: 0.3 SBU
Doxygen-1.8.5 and texlive-20130530 (specifically, pdflatex and htlatex) to build the PDF documentation
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/Libvorbis
Install libvorbis by running the following commands:
./configure --prefix=/usr --disable-static && make
To test the results, issue: make LIBS=-lm check.
Now, as the root
user:
make install && install -v -m644 doc/Vorbis* /usr/share/doc/libvorbis-1.3.3
--disable-static
: This
switch prevents installation of static versions of the libraries.
--enable-docs
: This switch enables
building the documentation in formats other than the supplied html.
Last updated on 2013-08-20 13:51:02 -0700