1999-01-18 23:14:03 +01:00
|
|
|
|
|
|
|
ALSA utils installation
|
|
|
|
=======================
|
|
|
|
|
2004-11-09 19:36:47 +01:00
|
|
|
Requirements
|
|
|
|
------------
|
|
|
|
|
|
|
|
alsamixer requires the ncurses library. Some systems need to install
|
|
|
|
the develop package additionally to link with this library.
|
|
|
|
|
|
|
|
alsaconf requires dialog or whiptail program to run properly.
|
|
|
|
|
2017-09-26 20:36:12 +02:00
|
|
|
If systemd (minimum version 18) is installed it will be used to run
|
|
|
|
alsactl to store and restore settings.
|
|
|
|
|
1999-01-18 23:14:03 +01:00
|
|
|
Installation
|
|
|
|
------------
|
|
|
|
|
|
|
|
For installation you can use these commands:
|
|
|
|
|
|
|
|
./configure
|
|
|
|
make install
|
|
|
|
|
|
|
|
If ./configure command complain that alsa-lib package isn't installed,
|
|
|
|
please, check if --prefix option is same for alsa-lib and alsa-utils
|
|
|
|
package. The configure script from alsa-utils package probably cannot find
|
2004-11-09 19:36:47 +01:00
|
|
|
header file asoundlib.h in $prefix/include/alsa directory (usually in
|
|
|
|
/usr/include/alsa directory).
|
2001-11-26 19:35:01 +01:00
|
|
|
|
2012-02-11 09:17:48 +01:00
|
|
|
Compilation from git sources
|
2006-05-12 15:34:22 +02:00
|
|
|
---------------------------
|
2001-11-26 19:35:01 +01:00
|
|
|
|
2001-11-26 19:39:49 +01:00
|
|
|
You need also GNU packages autoconf and automake installed in your system
|
2012-02-11 09:17:48 +01:00
|
|
|
to compile git sources of alsa-utils package.
|
2001-11-26 19:35:01 +01:00
|
|
|
|
|
|
|
For compilation you can use these commands:
|
|
|
|
|
|
|
|
aclocal
|
2005-08-19 09:47:00 +02:00
|
|
|
gettextize
|
2002-12-03 12:07:57 +01:00
|
|
|
autoheader
|
2001-11-26 19:35:01 +01:00
|
|
|
automake --foreign --copy --add-missing
|
|
|
|
autoconf
|
|
|
|
./configure
|
|
|
|
make
|
|
|
|
|
2012-02-11 09:17:48 +01:00
|
|
|
The included gitcompile script does this job for you.
|
2001-11-26 19:35:01 +01:00
|
|
|
|
2016-12-09 14:02:32 +01:00
|
|
|
To configure the build to install in a local directory, a command like the
|
|
|
|
following can be used:
|
|
|
|
|
|
|
|
./gitcompile --prefix="$PWD/build" \
|
|
|
|
--with-systemdsystemunitdir="$PWD/build/$(pkg-config systemd --variable=systemdsystemunitdir)" \
|
|
|
|
--with-udev-rules-dir="$PWD/build/$(pkg-config udev --variable=udevdir)"
|
|
|
|
|
2001-11-26 19:35:01 +01:00
|
|
|
Note: Some automake packages have missing aclocal program. Use newer version
|
|
|
|
in the case.
|