-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
89 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,6 @@ | ||
UdooPlayer | ||
========== | ||
Boîtes Électriques - Server (be-server) | ||
======================================= | ||
|
||
A loop player for the UDOO, based on libaudiotool | ||
A loop player for the Raspberry Pi, forked from UDOO Player and based on libaudiotool. | ||
|
||
Installation on a new UDOO image (Ubuntu 12.04) | ||
|
||
sudo add-apt-repository ppa:ubuntu-toolchain-r/test | ||
sudo add-apt-repository ppa:ubuntu-sdk-team/ppa | ||
sudo apt-get update | ||
sudo apt-get dist-upgrade | ||
sudo apt-get install git g++-4.8 ubuntu-sdk libportaudiocpp0 libportaudio-dev libavfilter-dev libavformat-dev libavcodec-dev cmake | ||
|
||
|
||
Build latest CMake and KDE Frameworks 5 Archive : | ||
|
||
* CMake | ||
``` | ||
mkdir ~/kf5 | ||
cd ~/kf5 | ||
wget http://www.cmake.org/files/v3.0/cmake-3.0.0.tar.gz | ||
tar -zxf cmake-3.0.0.tar.gz | ||
cd cmake-3.0.0 | ||
(mkdir build; cd build; cmake ..; make; make install) | ||
``` | ||
* Extra CMake modules | ||
``` | ||
git clone git://anongit.kde.org/extra-cmake-modules | ||
cd extra-cmake-modules | ||
(mkdir build; cd build; cmake ..; make; make install) | ||
``` | ||
* KArchive | ||
``` | ||
wget http://download.kde.org/stable/frameworks/5.0.0/karchive-5.0.0.tar.xz | ||
tar -xf karchive-5.0.0.tar.xz | ||
cd karchive-5.0.0.tar.xz | ||
(mkdir build; cd build; cmake ..; make; make install) | ||
``` | ||
|
||
And build. | ||
Installation and configuration instruction can be found in the doc/ directory. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
Compiling the project | ||
===================== | ||
|
||
Dependencies | ||
------------ | ||
|
||
Installation on a new Raspberry Pi image (Raspbian Jessie) | ||
|
||
sudo add-apt-repository ppa:ubuntu-toolchain-r/test | ||
sudo add-apt-repository ppa:ubuntu-sdk-team/ppa | ||
sudo apt-get update | ||
sudo apt-get dist-upgrade | ||
sudo apt-get install git g++-4.8 ubuntu-sdk libportaudiocpp0 libportaudio-dev libavfilter-dev libavformat-dev libavcodec-dev cmake | ||
|
||
|
||
Build latest CMake and KDE Frameworks 5 Archive : | ||
|
||
* CMake | ||
``` | ||
mkdir ~/kf5 | ||
cd ~/kf5 | ||
wget http://www.cmake.org/files/v3.0/cmake-3.0.0.tar.gz | ||
tar -zxf cmake-3.0.0.tar.gz | ||
cd cmake-3.0.0 | ||
(mkdir build; cd build; cmake ..; make; make install) | ||
``` | ||
* Extra CMake modules | ||
``` | ||
git clone git://anongit.kde.org/extra-cmake-modules | ||
cd extra-cmake-modules | ||
(mkdir build; cd build; cmake ..; make; make install) | ||
``` | ||
* KArchive | ||
``` | ||
wget http://download.kde.org/stable/frameworks/5.0.0/karchive-5.0.0.tar.xz | ||
tar -xf karchive-5.0.0.tar.xz | ||
cd karchive-5.0.0.tar.xz | ||
(mkdir build; cd build; cmake ..; make; make install) | ||
``` | ||
|
||
And build. | ||
|
||
Building the program | ||
-------------------- | ||
|
||
First, clone the repository on the Raspberry Pi, either directly from Github or using the Git CLI:: | ||
$ git clone https://github.com/hixe33/boiteselec-server | ||
Then, we need to generate the Makefile before finally compiling the sources:: | ||
|
||
$ mkdir boiteselec-server/build | ||
$ qmake -config release -o ../build/Makefile boiteselec-server/src/be-server.pro; | ||
$ cd boiteselec-server/build | ||
$ make |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters