ALSA Library

From CBLFS
Revision as of 13:40, 27 September 2006 by Jciccone (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
Download Source: install -v -d -m755 /usr/share/alsa/doc/html &&

install -v -m644 doc/doxygen/html/* /usr/share/alsa/doc/html


Dependencies

Optional

Non-Multilib

Compile the package:

./configure --enable-static &&
make

Install the package

make install &&
install -v -m644 -D doc/asoundrc.txt \
    /usr/share/doc/alsa-lib-1.0.11/asoundrc.txt

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" ./configure &&
make

Install the package

make install

N32

Compile the package:

CC="gcc ${BUILDN32}" ./configure --libdir=/usr/lib32 --enable-static &&
make

Install the package

make install

64Bit

Compile the package:

CC="gcc ${BUILD64}" ./configure --libdir=/usr/lib64 --enable-static &&
make

Install the package

make install &&
install -v -m644 -D doc/asoundrc.txt \
    /usr/share/doc/alsa-lib-1.0.11/asoundrc.txt

Documentation

If you have Doxygen installed and you wish to build the library API documentation, run the following commands:

make doc &&
install -v -d -m755 /usr/share/alsa/doc/html &&
install -v -m644 doc/doxygen/html/* /usr/share/alsa/doc/html