Browse Source

Fix up the markdown syntax and remove HTML tags

tags/1.9.8
Marcos Marado GitHub 7 years ago
parent
commit
5afa355873
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 21 additions and 15 deletions
  1. +21
    -15
      INSTALL.md

+ 21
- 15
INSTALL.md View File

@@ -1,21 +1,25 @@
# --- INSTALL for Carla ---
# INSTALL for Carla

To install Carla, simply run as usual: <br/>
`$ make` <br/>
`$ [sudo] make install`
To install Carla, simply run as usual:
```
$ make
$ [sudo] make install
```

You can run it without installing, by using instead: <br/>
`$ make` <br/>
`$ ./source/carla`
You can run it without installing, by using instead:
```
$ make
$ ./source/carla`
```

Packagers can make use of the 'PREFIX' and 'DESTDIR' variable during install, like this: <br/>
`$ make install PREFIX=/usr DESTDIR=./test-dir`
Packagers can make use of the `PREFIX` and `DESTDIR` variable during install, like this:
```
$ make install PREFIX=/usr DESTDIR=./test-dir
```

<br/>
## BUILD DEPENDENCIES

===== BUILD DEPENDENCIES =====
--------------------------------
The required build dependencies are: <i>(devel packages of these)</i>
The required build dependencies are: *(devel packages of these)*

- PyQt4/5 (python3 version)

@@ -55,6 +59,8 @@ Optional but recommended:
- python3-rdflib (for LADSPA-RDF support)


You can use: <br/>
`$ make features` <br/>
You can use:
```
$ make features
```
To find out which dependencies are missing.

Loading…
Cancel
Save