| Line | |
|---|
| 1 | = Compile-time requirements = |
|---|
| 2 | * lv2core |
|---|
| 3 | |
|---|
| 4 | = Run-time requirements = |
|---|
| 5 | * pygtk |
|---|
| 6 | * pycairo |
|---|
| 7 | |
|---|
| 8 | = Configure it = |
|---|
| 9 | |
|---|
| 10 | ./waf configure |
|---|
| 11 | |
|---|
| 12 | By default waf will try to autodetect where to install the plugin by |
|---|
| 13 | checking the LV2_PATH environment variable. |
|---|
| 14 | If you don't have LV2_PATH set or if you want to override install |
|---|
| 15 | location, you need to use the --lv2-dir switch. You have to specify |
|---|
| 16 | full normalized path (i.e. /home/usesrname/xxx instead of ~/xxx). |
|---|
| 17 | |
|---|
| 18 | ./waf configure --lv2-dir=/usr/lib/lv2 |
|---|
| 19 | |
|---|
| 20 | For full list of options, run: |
|---|
| 21 | |
|---|
| 22 | ./waf configure --help |
|---|
| 23 | |
|---|
| 24 | = Build it = |
|---|
| 25 | |
|---|
| 26 | ./waf |
|---|
| 27 | |
|---|
| 28 | You can use -j option to enable building on more than one CPU: |
|---|
| 29 | |
|---|
| 30 | ./waf -j 4 |
|---|
| 31 | |
|---|
| 32 | = Install it = |
|---|
| 33 | |
|---|
| 34 | ./waf install |
|---|
| 35 | |
|---|
| 36 | You probably want to run later as superuser to install system-wide |
|---|