INSTALL (1487B)
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 git sources 28 --------------------------- 29 30 You need also GNU packages autoconf and automake installed in your system 31 to compile git 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 gitcompile script does this job for you. 44 45 To configure the build to install in a local directory, a command like the 46 following can be used: 47 48 ./gitcompile --prefix="$PWD/build" \ 49 --with-systemdsystemunitdir="$PWD/build/$(pkg-config systemd --variable=systemdsystemunitdir)" \ 50 --with-udev-rules-dir="$PWD/build/$(pkg-config udev --variable=udevdir)" 51 52 Note: Some automake packages have missing aclocal program. Use newer version 53 in the case.