ladish/INSTALL

58 lines
1.3 KiB
Plaintext
Raw Permalink Normal View History

2009-09-01 02:22:16 +03:00
===================================================
Requirements (tools, headers and libraries):
* You need gcc for C and C++ (4.2.2 should work)
2010-04-11 12:25:30 +03:00
* You need JACK (1.9.5 should work)
2009-09-01 02:22:16 +03:00
* 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)
2024-04-26 18:30:41 +03:00
For building the GTK2 frontend gladish (disabled by default),
additional dependencies are:
2012-12-29 15:47:50 +02:00
* You need glib-2.20.3 or later
* You need dbus-glib-0.74 or later
* You need gtk+-2.20.0 or later
2009-09-01 02:22:16 +03:00
2024-04-26 18:30:41 +03:00
Note, gladish will not work with GTK3 (or GTK4).
The Claudia frontend is alternative GUI in python that uses Qt.
2009-09-01 02:22:16 +03:00
===================================================
Instructions for building with waf follow.
As alternative, meson.build is provided.
2009-09-01 02:22:16 +03:00
= 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
2024-04-26 18:30:41 +03:00
If you want to build gladish as well:
./waf configure --prefix=/usr --enable-gladish
2009-09-01 02:22:16 +03:00
For full list of options, run:
./waf configure --help
= Build it =
./waf
2024-04-26 18:30:41 +03:00
By default, all available CPUs/cores will be used.
To adjust the number, use -j option, e.g. for 4 jobs:
2009-09-01 02:22:16 +03:00
./waf -j 4
= Install it =
./waf install
When installing into /usr this command has to be ran as root.