mirror of
https://github.com/DigitalDevices/pvr.octonet.git
synced 2023-10-10 13:36:57 +02:00
020dd98e7b
We previously assumed that the channelId provided by the Octonet would only contain numbers and colons, which unfortunately is not true. The satellite names could contain arbitrary characters, which then caused the conversion to a numeric value to fail, stopping channels from being distinguishable. This caused all EPG events to be mapped to the first channel. Signed-off-by: Julian Scheel <julian@jusst.de> |
||
---|---|---|
debian | ||
depends/common/jsoncpp | ||
pvr.octonet | ||
src | ||
.gitignore | ||
.travis.yml | ||
appveyor.yml | ||
CMakeLists.txt | ||
FindJsonCpp.cmake | ||
README.md |
Octonet PVR
Digital Devices Octonet PVR client addon for Kodi
Platform | Status |
---|---|
Linux + OS X (Travis) | |
Windows (AppVeyor) |
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 https://github.com/xbmc/xbmc.git
If you already have a local Kodi checkout, you can use that one. Just make sure it is recent enough (Kodi 17 Beta 5 or later should work).
$ 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.