This repository has been archived by the owner on Mar 10, 2019. It is now read-only.
forked from GNOME/rhythmbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added build instructions and libraries
- Loading branch information
Martin Ashby
committed
Feb 3, 2018
1 parent
29b9226
commit 0ea0043
Showing
2 changed files
with
32 additions
and
0 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 |
---|---|---|
@@ -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 not shown.