-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
44 lines (28 loc) · 1.38 KB
/
README
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
Disko - An application framework for digital media devices
==============================================================================
For information about disko take a look at <http://www.diskohq.org>.
------------------------------------------------------------------------------
1. Howto install disko?
------------------------------------------------------------------------------
Generally you would do the following:
# tar -jxvf disko-<version>.tar.bz2
# cd disko-<version>
# scons -h
# followed by the selection of parameters by your choice
# scons install
This will install disko into /usr. If you want to
install it somewhere else, you can set the prefix option in the scons commandlne.
If you choose to compile disko with other parameters, it is recommended to issue a
# scons -c
before you do so. Every other approach will lead to unexpected results!
------------------------------------------------------------------------------
2. What about documentation?
------------------------------------------------------------------------------
We are using doxygen (http://www.doxygen.org) to create documentation
from our code.
To create it, just enter:
# scons doc
Now there will be a directory disko-<version>/doc/html. Point your browser
to index.html and you will have access to our doxgen API documentation.
have fun
the Disko team