Kodi Community Forum

Full Version: Question regarding pvr.hts compiling
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
What I did is the following:

Code:
cd /usr/local/src
git clone https://github.com/xbmc/xbmc.git
git clone https://github.com/kodi-pvr/pvr.hts.git
cd /usr/local/src/xbmc/project/cmake/addons
mkdir build
cd build
cmake .. -DADDONS_TO_BUILD=pvr.hts -DADDONS_SRC_DIR=/usr/local/src/pvr.hts -DOVERRIDE_PATHS=1 # Without DOVERRIDE_PATH I received an error
make -j4

Here's my output from my make process: http://paste.ubuntu.com/15007535/

I was wondering, how I can ensure that I'm using the actual version 3.0.2 of pvr.hts as mentioned in addon.xml.in:

Code:
root@kodi:~# grep version /usr/local/src/pvr.hts/pvr.hts/addon.xml.in
<?xml version="1.0" encoding="UTF-8"?>
  version="3.0.2"

Actually my addon.xml seems to be untouched (does not occur in make process).
Did I missed some step or does all necessary files have been updated and just the addon.xml is not updated(?):

Code:
root@kodi:~# grep version /usr/share/kodi/addons/pvr.hts/addon.xml
<?xml version="1.0" encoding="UTF-8"?>
  version="2.1.18"


Thanks in advance for your help.