2015-04-04, 18:03
Yes spot on. That is you need kodiplatform in the mock env.
FOR KODI
from /home/user folder
mkdir git
git clone https://github.com/xbmc/xbmc.git
cd xbmc
git checkout 32c1f532084a2fd642a19c75a185dd2a3434c5d2
./bootstrap
./configure
make
make install
FOR KODI-PLATFORM
from /home/user folder
cd git
git clone https://github.com/xbmc/kodi-platform.git
cd kodi-platform
cmake -DCMAKE_INSTALL_PREFIX=/usr/local
make
make install
FOR PVR.HTS
from /home/user folder
cd git
git clone https://github.com/kodi-pvr/pvr.hts.git
cd pvr.hts
cmake -DCMAKE_INSTALL_PREFIX=/usr/local
make
make install
addon="pvr.your_pvr"
git clone https://github.com/xbmc/xbmc.git
git clone https://github.com/kodi-pvr/${addon}
mkdir build
pushd build
cmake -DADDON_SRC_PREFIX=".." \
-DADDONS_TO_BUILD="${addon}" \
-DCMAKE_INSTALL_PREFIX=output \
-DCMAKE_BUILD_TYPE=Release \
-DPACKAGE_ZIP=1 \
../xbmc/project/cmake/addons
make VERBOSE=1
# optional: make -C ${addon}-prefix/src/${addon}-build/ addon-package
(2015-05-10, 12:00)wsnipex Wrote: yes, see https://github.com/xbmc/xbmc/pull/7069
still not 100% fixed though.