Skip to content
This repository has been archived by the owner on Mar 10, 2019. It is now read-only.

Commit

Permalink
Added build instructions and libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Ashby committed Feb 3, 2018
1 parent 29b9226 commit 0ea0043
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
This is a fork of Rhythmbox (https://github.com/GNOME/rhythmbox)
for the development of a Deezer plugin.

It uses the Deezer API & native SDK (https://developers.deezer.com/sdk/native)
The SDK includes a proprietary binary, as such this plugin cannot be a part
of the official Rhythmbox source.

If you're building on Debian x86_64 like me, you can run the following commands
to build and install rhythmbox with Deezer support:

Install dependencies
`sudo apt build-dep rhythmbox`

Install libssl1.0.0 (required for Deezer SDK,
see https://github.com/deezer/native-sdk-samples/issues/23)
`sudo apt install libssl1.0.0`

Download the source code
`git clone https://github.com/MFAshby/rhythmbox-deezer.git`

Extract the deezer libraries, header files and autotools
configuration to your system
NB this zip only contains the x86_64 linux binary.
See the Deezer SDK documentation for other systems
```cd rhythmbox-deezer/
sudo tar xf plugins/deezerpl/libdeezer.tgz -C /```
Build & install - change the j parameter for your number of CPU cores
```autoreconf -i
./configure
make -j8
sudo make install```
Binary file added plugins/deezerpl/libdeezer.tgz
Binary file not shown.

0 comments on commit 0ea0043

Please sign in to comment.