Introduction to FLAC
        
        
          FLAC is an audio CODEC similar to
          MP3, but lossless, meaning that audio is compressed without losing
          any information.
        
        
          ![[Note]](../images/note.png) 
          
            Note
          
          
            Development versions of BLFS may not build or run some packages
            properly if LFS or dependencies have been updated since the most
            recent stable versions of the books.
          
         
        
          Package Information
        
        
        
          FLAC Dependencies
        
        
          Optional
        
        
          libogg-1.3.6, DocBook-utils-0.6.14, Doxygen-1.15.0, and Valgrind-3.26.0
        
       
      
        
          Installation of FLAC
        
        
          Install FLAC by running the
          following commands:
        
        ./configure --prefix=/usr            \
            --disable-thorough-tests \
            --docdir=/usr/share/doc/flac-1.5.0 &&
make
        
          To test the results, issue: make
          check. Note that if you passed the --enable-exhaustive-tests and --enable-valgrind-testing parameters to
          configure and then
          run the test suite, it will take a very long time (up to 300 SBUs) and use
          about 375 MB of disk space.
        
        
          Now, as the root user:
        
        make install