Installation of AudioFile
Install AudioFile by running the following
commands:
patch -Np1 -i ../audiofile-0.3.6-consolidated_patches-1.patch &&
autoreconf -fiv &&
./configure --prefix=/usr --disable-static &&
make
Now, as the root
user:
make install
To test the results, issue: make check.
Note that the tests will fail if the --disable-static
option is used and tests are executed before
make install. You have three options:
(a) configure without --disable-static, run the tests, but do not
install, then start a fresh build using --disable-static just for
installing the package.
(b) configure with --disable-static, but only run the tests after the
package is installed.
(c) configure with --disable-static, but only run the tests after a
DESTDIR install.