Changes between Version 5 and Version 6 of projects/synapse/raspberry


Ignore:
Timestamp:
11/25/12 15:31:24 (11 years ago)
Author:
Edwin Eefting
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • projects/synapse/raspberry

    v5 v6  
    6060
    6161
    62 === 3. install dependencies neccesary to compile synapse ===
     62
     63== compiling and installing synapse ===
     64
     65=== 1. install dependencies neccesary to compile synapse ===
    6366
    6467Inside the chroot do this:
    6568
    6669{{{
    67 root@lab1:~/Synapse# apt-get install libboost-all-dev cmake libcurl4-openssl-dev liboauth-dev
     70root@lab1:~/Synapse# apt-get install libboost-all-dev cmake libcurl4-openssl-dev liboauth-dev libvlc-dev
    6871Reading package lists... Done
    6972Building dependency tree       
    7073Reading state information... Done
    7174
     75(....... takes a while)
     76
    7277}}}
    7378
    7479
    75 == compiling and installing synapse ===
     80=== 2. clone the source tree ===
    7681
    7782{{{
     83root@lab1:~# git clone git://github.com/psy0rz/Synapse.git
     84Cloning into 'Synapse'...
     85remote: Counting objects: 4533, done.
     86remote: Compressing objects: 100% (1258/1258), done.
     87remote: Total 4533 (delta 3311), reused 4429 (delta 3207)
     88Receiving objects: 100% (4533/4533), 2.04 MiB | 835 KiB/s, done.
     89Resolving deltas: 100% (3311/3311), done.
     90}}}
    7891
     92wow...even while emulated git STILL is superquick! git is awesome :)
     93
     94=== 3. compile it ===
     95
     96{{{
     97root@lab1:~# cd Synapse/
     98root@lab1:~/Synapse# cmake .
     99-- The C compiler identification is GNU 4.6.3
     100......
     101
     102root@lab1:~/Synapse# make -j 4
     103Scanning dependencies of target test_http_json
     104Scanning dependencies of target pl_dir
    79105}}}
     106