-
Notifications
You must be signed in to change notification settings - Fork 26
/
INSTALL
41 lines (28 loc) · 929 Bytes
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
ZEVIO utils installation
========================
Requirements
------------
...
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
header file asoundlib.h in $prefix/include/alsa directory (usually in
/usr/include/alsa directory).
Compilation from SVN sources
---------------------------
You need also GNU packages autoconf and automake installed in your system.
For compilation you can use these commands:
aclocal
autoheader
automake --foreign --copy --add-missing
autoconf
./configure
make
The included svncompile script does this job for you.
Note: Some automake packages have missing aclocal program. Use newer version
in the case.