pvr.octonet/README.md

37 lines
1.6 KiB
Markdown
Raw Permalink Normal View History

# Octonet PVR
2016-11-28 12:14:56 +01:00
Digital Devices [Octonet](http://www.digital-devices.eu/shop/de/netzwerk-tv/) PVR client addon for [Kodi](http://kodi.tv)
2016-11-03 18:01:49 +01:00
2023-11-07 12:49:27 +01:00
[![License: GPL-2.0-or-later](https://img.shields.io/badge/License-GPL%20v2+-blue.svg)](LICENSE.md)
[![Build and run tests](https://github.com/DigitalDevices/pvr.octonet/actions/workflows/build.yml/badge.svg?branch=Omega)](https://github.com/DigitalDevices/pvr.octonet/actions/workflows/build.yml)
[![Build Status](https://jenkins.kodi.tv/view/Addons/job/DigitalDevices/job/pvr.octonet/job/Omega/badge/icon)](https://jenkins.kodi.tv/blue/organizations/jenkins/DigitalDevices%2Fpvr.octonet/branches/)
2016-11-03 18:01:49 +01:00
# Building
2016-11-28 12:14:56 +01:00
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.
2016-11-03 18:01:49 +01:00
2016-11-28 12:14:56 +01:00
Clone the `pvr.octonet` repository:
2016-11-03 18:01:49 +01:00
```
2016-11-28 12:14:56 +01:00
$ git clone https://github.com/DigitalDevices/pvr.octonet.git
2016-11-03 18:01:49 +01:00
```
2016-11-28 12:14:56 +01:00
Clone the Kodi repository:
2016-11-03 18:01:49 +01:00
2016-11-28 12:14:56 +01:00
```
2019-04-21 17:40:25 +02:00
$ git clone --branch master https://github.com/xbmc/xbmc.git
2016-11-28 12:14:56 +01:00
```
```
$ 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"
2016-11-28 12:14:56 +01:00
```
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.