FLAC is an audio CODEC similar to MP3, but lossless, meaning that audio is compressed without losing any information.
Download (HTTP): http://prdownloads.sourceforge.net/flac/flac-1.1.2.tar.gz
Download MD5 sum: 2bfc127cdda02834d0491ab531a20960
Download size: 1.5 MB
Estimated disk space required: 49 MB
Estimated build time: 0.7 SBU
libogg-1.1.2, XMMS-1.2.10, NASM-0.98.39, DocBook-utils-0.6.14, Doxygen-1.4.3 and Valgrind
Install FLAC by running the following commands:
LIBS=-lm ./configure --prefix=/usr && make
Now, as the root user:
make install
If you passed the --enable-exhaustive-tests and --enable-valgrind-testing parameters to configure and then run the make check tests, it will take a very long time (about 150 SBUs) and use about 375 MB of disk space.
LIBS=-lm ./configure --prefix=/usr: libFLAC uses a function from the math library but is not linked with libm. Passing the environment variable to configure satisfies this dependency.
Last updated on 2005-08-01 13:29:19 -0600