Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update DEBIAN.md #273

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 25 additions & 2 deletions DEBIAN.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
# Build Stremio for Debian GNU/Linux

These instructions have been tested in Debian Buster (Testing)
These instructions have been tested in Debian Bulleye (Stable)

## 1. Start by cloning the GIT repository:

``git clone --recurse-submodules -j8 git://github.com/Stremio/stremio-shell.git``

## 2. Install QTCreator

``sudo apt-get install qtcreator qt5-qmake qt5-default g++ pkgconf libssl-dev``
``sudo apt-get install qtcreator qt5-qmake qtbase5-dev g++ pkgconf libssl-dev``

## 3. Generate the Makefiles for Stremio

``sudo apt-get install cmake``

``cd stremio-shell``

``qmake``
Expand Down Expand Up @@ -87,6 +89,27 @@ Now you should be able to run it normally.

``./build/stremio``

## 8. Addons Configuration
Lets create a new desktop app shortcut:
``sudo touch /usr/share/applications/stremio.desktop``
Then open it:
``sudo gedit /usr/share/applications/stremio.desktop``
Paste inside the followin:
```
[Desktop Entry]
Version=1.0
Type=Application
Name=stremio
Icon=/home/mache/Downloads/stremio-shell/images/stremio.png
Exec=/home/mache/Downloads/stremio-shell/build/stremio %u
Comment=Streaming with pleasure!
Categories=Player;
Terminal=false
```
Lets set the shortcut to be used on addresses like stremio://addons.conf/manifest.json:
``sudo xdg-mime default stremio.desktop x-scheme-handler/stremio``

## NOTE
If you get a popup window stating:

Error while starting streaming server. Please consider re-installing Stremio from https://www.stremio.com
Expand Down