Changes between Version 5 and Version 6 of projects/synapse/raspberry
- Timestamp:
- 11/25/12 15:31:24 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
projects/synapse/raspberry
v5 v6 60 60 61 61 62 === 3. install dependencies neccesary to compile synapse === 62 63 == compiling and installing synapse === 64 65 === 1. install dependencies neccesary to compile synapse === 63 66 64 67 Inside the chroot do this: 65 68 66 69 {{{ 67 root@lab1:~/Synapse# apt-get install libboost-all-dev cmake libcurl4-openssl-dev liboauth-dev 70 root@lab1:~/Synapse# apt-get install libboost-all-dev cmake libcurl4-openssl-dev liboauth-dev libvlc-dev 68 71 Reading package lists... Done 69 72 Building dependency tree 70 73 Reading state information... Done 71 74 75 (....... takes a while) 76 72 77 }}} 73 78 74 79 75 == compiling and installing synapse ===80 === 2. clone the source tree === 76 81 77 82 {{{ 83 root@lab1:~# git clone git://github.com/psy0rz/Synapse.git 84 Cloning into 'Synapse'... 85 remote: Counting objects: 4533, done. 86 remote: Compressing objects: 100% (1258/1258), done. 87 remote: Total 4533 (delta 3311), reused 4429 (delta 3207) 88 Receiving objects: 100% (4533/4533), 2.04 MiB | 835 KiB/s, done. 89 Resolving deltas: 100% (3311/3311), done. 90 }}} 78 91 92 wow...even while emulated git STILL is superquick! git is awesome :) 93 94 === 3. compile it === 95 96 {{{ 97 root@lab1:~# cd Synapse/ 98 root@lab1:~/Synapse# cmake . 99 -- The C compiler identification is GNU 4.6.3 100 ...... 101 102 root@lab1:~/Synapse# make -j 4 103 Scanning dependencies of target test_http_json 104 Scanning dependencies of target pl_dir 79 105 }}} 106