source: trunk/README@ 1014

Last change on this file since 1014 was 1014, checked in by landlord, 14 years ago

Renamed 'HAVE_DVBAPI' to 'HAVE_DVBAPI_3'

File size: 1.4 KB
Line 
1This is OSCam: Open Source Cam.
2
3The base is MpCS version 0.9d. Thanks a lot to all the authors/contributors.
4
5Base code for videoguard2 support is from VDR-SC.
6
7Pointers
8--------
9
10- svn repository:
11 http://streamboard.gmc.to/svn/oscam
12
13- trac instance:
14 http://streamboard.gmc.to:8001/oscam
15
16- wiki:
17 http://streamboard.gmc.to:8001/oscam/wiki
18
19Get sources from SVN
20--------------------
21
22 svn co http://streamboard.gmc.to/svn/oscam/trunk oscam
23 cd oscam
24
25Compile options
26---------------
27
28Enable features:
29
30CS_ANTICASC - enable anti-cascading
31CS_LOGHISTORY - enable log history
32HAVE_DVBAPI_3 - enable DVB API 3 support
33
34
35Build with CMake (new solution for building)
36--------------------------------------------
37
38 mkdir build_dir
39 cd build_dir
40 cmake ..
41 make
42
43Build with different toolchain (cross-compilation)
44--------------------------------------------------
45
46 cmake -DCMAKE_TOOLCHAIN_FILE=../toolchains/toolchain-powerpc-tuxbox.cmake ..
47
48Change build parameters (on command line)
49-----------------------------------------
50
51 cmake -DCS_CONFDIR=/where/is/config/files ..
52 cmake -DCMAKE_INSTALL_PREFIX=/where/to/installed ..
53 cmake -DCS_CONFDIR=/where/is/config/files -DCMAKE_INSTALL_PREFIX=/where/to/installed ..
54
55Change build parameters (with interface)
56----------------------------------------
57
58 ccmake ..
59
60Install
61-------
62
63 make install
Note: See TracBrowser for help on using the repository browser.