Home | History | Annotate | Download | only in alsa-utils
      1 
      2 			ALSA utils installation
      3 			=======================
      4 
      5 Requirements
      6 ------------
      7 
      8 alsamixer requires the ncurses library.  Some systems need to install
      9 the develop package additionally to link with this library.
     10 
     11 alsaconf requires dialog or whiptail program to run properly.
     12 
     13 Installation
     14 ------------
     15 
     16 For installation you can use these commands:
     17 
     18 	./configure
     19 	make install
     20 
     21 If ./configure command complain that alsa-lib package isn't installed,
     22 please, check if --prefix option is same for alsa-lib and alsa-utils
     23 package. The configure script from alsa-utils package probably cannot find
     24 header file asoundlib.h in $prefix/include/alsa directory (usually in
     25 /usr/include/alsa directory).
     26 
     27 Compilation from HG sources
     28 ---------------------------
     29 
     30 You need also GNU packages autoconf and automake installed in your system
     31 to compile HG (Mercurial) sources of alsa-utils package.
     32 
     33 For compilation you can use these commands:
     34 
     35 	aclocal
     36 	gettextize
     37 	autoheader
     38 	automake --foreign --copy --add-missing
     39 	autoconf
     40 	./configure
     41 	make
     42 
     43 The included hgcompile script does this job for you.
     44 
     45 Note: Some automake packages have missing aclocal program. Use newer version
     46       in the case.
     47