Difference between revisions of "Ubuntu Raring Ringtail Installation"

From MythTV Official Wiki
Jump to: navigation, search
(Instructions to install from source on Ubuntu Raring Ringtails)
 
m (Configure the MythTV Compile Options: The plugin to manage Netflix's mail queue was removed years ago.)
Line 29: Line 29:
 
</pre></code>
 
</pre></code>
  
If you don't want some modules you might want to disable then in mythplugins (eg flix support)
+
If you don't want some modules you might want to disable then in mythplugins (eg photo gallery support)
  
 
<code><pre>
 
<code><pre>
./configure --disable-mythnetflix
+
./configure --disable-mythgallery
 
</pre></code>
 
</pre></code>
  

Revision as of 15:50, 16 February 2013

See Ubuntu Installation Guides for installing on other Ubuntu versions.

These instructions allow you to compile the latest development version of MythTV on Ubuntu Raring Ringtail 13.04

Install Required Packages

sudo apt-get install git build-essential qt4-dev-tools yasm uuid-dev libfreetype6-dev libmp3lame-dev libxinerama-dev

Download MythTV Source Code

Follow the instructions or for the latest unstable, development version

git clone git://github.com/MythTV/mythtv.git

will create a subdirectory named mythtv which contains the source code.

To update your copy of the source code, change to the mythtv directory created, and then

git pull

Configure the MythTV Compile Options

Change to the mythtv directory created when you downloaded the source code using Git, then

./configure

If you don't want some modules you might want to disable then in mythplugins (eg photo gallery support)

./configure --disable-mythgallery

Compile and install MythTV

Change to the mythtv directory created when you downloaded the source code using Git, then

make
sudo make install