Kodi Community Forum
[LINUX] [HOW TO] Build PVR for Mythtv - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: PVR & Live TV Support (https://forum.kodi.tv/forumdisplay.php?fid=167)
+---- Forum: MythTV (https://forum.kodi.tv/forumdisplay.php?fid=170)
+---- Thread: [LINUX] [HOW TO] Build PVR for Mythtv (/showthread.php?tid=109543)



[LINUX] [HOW TO] Build PVR for Mythtv - dubstar_04 - 2011-09-06

This is a very simple uncluttered guide to building XBMC PVR with Mythtv integration.

Ensure ALL build dependancies are upto date:

http://wiki.xbmc.org/index.php?title=HOW-TO_compile_XBMC_for_Linux_from_source_code

Get XBMC:

Code:
sudo apt-get install git-core

git clone https://github.com/dteirney/xbmc.git

cd xbmc

git branch -a

git checkout remotes/origin/pvr


Configure and Build:

Code:
./bootstrap

./configure

make -j2

sudo make install

UPDATING:

Code:
git pull [url]https://github.com/dteirney/xbmc.git[/url]

if you spot any mistakes or have any recommendations please PM me.

Thanks,

Dubstar_04