-
Notifications
You must be signed in to change notification settings - Fork 9
/
INSTALL
57 lines (35 loc) · 1.35 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
===================================================
Requirements (tools, headers and libraries):
* You need gcc for C and C++ (4.2.2 should work)
* You need JACK (1.9.5 should work)
* You need dbus (1.2.16 should work)
* You need libuuid from e2fsprogs (1.40.2 should work)
* You need the expat XML parser (2.0.1 should work)
* Python (for ladish_control and LADI Tools)
For building the GTK2 frontend gladish (disabled by default),
additional dependencies are:
* You need glib-2.20.3 or later
* You need dbus-glib-0.74 or later
* You need gtk+-2.20.0 or later
Note, gladish will not work with GTK3 (or GTK4).
The Claudia frontend is alternative GUI in python that uses Qt.
===================================================
Instructions for building with waf follow.
As alternative, meson.build is provided.
= Configure it =
./waf configure
This will configure for installation to /usr/local prefix.
If you want to use other prefix, use --prefix option:
./waf configure --prefix=/usr
If you want to build gladish as well:
./waf configure --prefix=/usr --enable-gladish
For full list of options, run:
./waf configure --help
= Build it =
./waf
By default, all available CPUs/cores will be used.
To adjust the number, use -j option, e.g. for 4 jobs:
./waf -j 4
= Install it =
./waf install
When installing into /usr this command has to be ran as root.