Go to file
Kai Sommerfeld e35cc37347
Merge pull request #32 from AlwinEsch/Leia-change
[Leia] update CMakeLists.txt to 3.5 and change include way
2019-09-23 12:21:00 +02:00
debian update debian control 2017-05-18 12:04:46 +02:00
depends/common/jsoncpp update CMakeLists.txt to 3.5 2019-08-25 22:00:16 +02:00
pvr.octonet increase version to 0.7.1 2019-08-25 22:14:56 +02:00
src change header include to start with "kodi/" 2019-08-25 22:14:49 +02:00
.gitignore change to automatic depends set on addon.xml 2017-05-18 12:04:46 +02:00
.travis.yml update .travis.yml 2019-08-25 22:14:40 +02:00
CMakeLists.txt change header include to start with "kodi/" 2019-08-25 22:14:49 +02:00
FindJsonCpp.cmake depdends: Import JsonCpp 2016-02-02 11:03:40 +01:00
Jenkinsfile build with Kodi Leia API 2019-04-16 06:37:32 +02:00
README.md build with Kodi Leia API 2019-04-16 06:37:32 +02:00
appveyor.yml build with Kodi Leia API 2019-04-16 06:37:32 +02:00

README.md

Octonet PVR

Digital Devices Octonet PVR client addon for Kodi

Platform Status
Linux + OS X (Travis) Build Status
Windows (AppVeyor) Build status

Building

These instructions work on all supported platforms for the most part. Obviously, paths need to be adjusted according to your OS (/ vs \). We use Linux paths here as an example.

Clone the pvr.octonet repository:

$ git clone https://github.com/DigitalDevices/pvr.octonet.git

Clone the Kodi repository:

$ git clone --branch Leia https://github.com/xbmc/xbmc.git
$ cd pvr.octonet
$ mkdir build
$ cd build
$ cmake -DCMAKE_BUILD_TYPE=Release -DADDONS_TO_BUILD="pvr.octonet" -DADDON_SRC_PREFIX="path to parent of pvr.octonet" -DCMAKE_INSTALL_PREFIX="install" -DPACKAGE_ZIP=ON "path to kodi/cmake/addons"

On Windows, you should add -G "NMake Makefiles" to the CMake invocation. Make sure that ADDON_SRC_PREFIX does not point directly to pvr.octonet but instead to its parent directory.

Finally, build the plugin with make (or nmake on Windows). The plugin should be in an install subdirectory.