Go to file
Kai Sommerfeld c2a3daa691
Merge pull request #57 from AlwinEsch/Nexus-changes
[Nexus] increase version to 20.3.0 (API related)
2022-09-16 16:01:46 +02:00
.github/workflows change test builds to 'Kodi Nexus' 2021-09-19 09:56:27 +02:00
debian update copyright year to 2021 2021-09-18 19:51:57 +02:00
depends/common/jsoncpp change to new C++ addon interface 2020-06-07 19:06:40 +02:00
pvr.octonet increase version to 20.3.0 (API related) 2022-09-16 11:45:19 +02:00
src API related update 2021-12-28 13:27:10 +01:00
.clang-format clang code cleanup 2020-06-07 16:56:16 +02:00
.gitignore update .gitignore 2020-03-25 20:58:07 +01:00
.travis.yml Travis changes for cpp17 and debian 2020-10-17 15:30:32 +01:00
CMakeLists.txt change to new C++ addon interface 2020-06-07 19:06:40 +02:00
FindJsonCpp.cmake depdends: Import JsonCpp 2016-02-02 11:03:40 +01:00
Jenkinsfile change test builds to 'Kodi Nexus' 2021-09-19 09:56:27 +02:00
LICENSE.md add GPL2 as LICENSE.md to addon 2020-03-25 20:53:25 +01:00
README.md change test builds to 'Kodi Nexus' 2021-09-19 09:56:27 +02:00
appveyor.yml change test builds to 'Kodi Nexus' 2021-09-19 09:56:27 +02:00

README.md

Octonet PVR

Digital Devices Octonet PVR client addon for Kodi

Platform Status
Linux + OS X (github) Build and run tests
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 master 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.