Project

General

Profile

Building » History » Revision 21

Revision 20 (Bob Lightfoot, 2015-03-20 07:51) → Revision 21/32 (Bob Lightfoot, 2015-03-22 18:40)

h1. Building

h2. Prerequisites

Before you can build Tvheadend you will need several packages installed on your development machine.

The specific details will vary between distributions so we only cover the major ones here.

h3. Debian/Ubuntu

<pre>
$ sudo aptitude install build-essential git pkg-config libssl-dev bzip2 wget
</pre>

> Optional:
<pre>
$ sudo aptitude install libavahi-client-dev zlib1g-dev libavcodec-dev libavutil-dev libavformat-dev libswscale-dev
</pre>

h3. Redhat / Centos / Fedora

h4. Redhat/Centos/Fedora Build assumptions

<pre>
Redhat/Centos/Fedora are a package managed OS and as such tvheadend should be installed from an rpm on a production system.
This set of instructions details using tools git, mock and rpmbuild to package the source into an rpm and then install the rpm
</pre>

h4. Build Environment Configuration

install the software used for building tvheadened
<pre>
$sudo yum install git mock
</pre>

create a user to do the building as -- this is not a requirement, but does provide a modicum of compartmentaliztion when building
<pre>
$sudo useradd -g mock mock
$sudo passwd mock
</pre>

for more details view the Centos/Fedora Mock pages starting
http://fedoraproject.org/wiki/Projects/Mock

h4. Getting the files to work with

tvheadend sources are retrieved as follow
<pre>
$su mock
$mkdir git
$cd git
$ git clone https://github.com/tvheadend/tvheadend.git
</pre>

create a workfiles holding directory
<pre>
$mkdir ~/tvheadend
</pre>

you'll also need a starter source rpm and specfile found through one of the following in the ~/tvheadend folder:
https://tvheadend.org/boards/4/topics/14666
https://tvheadend.org/attachments/download/2823/tvheadend-4.0.01012015-1.src.rpm
https://tvheadend.org/attachments/download/2738/tvheadend-4.0.01012015-1.spec

h4. Step by Step Building the RPM

enter the local git repository and reset local to most current remote
<pre>
$cd ~/git/tvheadend
$git fetch origin
$git reset --hard origin/master
</pre>

determine the commit id of the master branch
<pre>
$git show-ref --head
</pre>

create the spec file for the next version note new and old are the date-revision strings
<pre>
$cp tvheadend-old.spec tvheadend-new.spec
</pre>

open the new spec and edit as follows
update the global commit string to match the current master commit
change the version string to match the new being built
change the git archive comment line to be the correct values commit tag and filename
change the source0 filename also
also modify the changelog to reflect the new version
save the spec file for use later
<pre>
$vi tvheadend-new.spec
</pre>

switch to the git tvheadened master and export the archive file called for in the new spec to the ~/tvheadend folder
<pre>
$cd ~/git/tvheadend
$git archive 96898a66e96927e4ace9a637ea923fd9f514dd1d --format=tar --prefix=tvheadend/ | gzip > ../tvheadend-4.0.03182015.tar.gz
$mv ../tvheadend-4.0.03182015.tar.gz ~/tvheadend
</pre>

mock setup
{for Fedora you'll need to use the rpmfusion environment}
{for centos you'll need to use nuxro's repos as an environment}
the /etc/mock/nux-7-x86_64.cfg can be created by adding following to the epel7.cfg and renaming as saved

<pre>
[nux-dextop]
name=Nux.Ro RPMs for general desktop use
baseurl=http://li.nux.ro/download/nux/dextop/el7/$basearch/ http://mirror.li.nux.ro/li.nux.ro/nux/dextop/el7/$basearch/
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-nux.ro
protect=0

[nux-dextop-testing]
name=Nux.Ro RPMs for general desktop use - testing
baseurl=http://li.nux.ro/download/nux/dextop-testing/el7/$basearch/
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-nux.ro
protect=0
</pre>

clean the mock build environment
<pre>
$mock --init -r nux-7-x86_64
</pre>

now build the previous version in the clean environment
<pre>
$mock -r nux-7-x86_64 --rebuild tvheadend-4.0.01012015-1.src.rpm
</pre>

copy in the new source tar and spec files
<pre>
$mock -r nux-7-x86_64 --no-clean --copyin tvheadend-4.0.03182015.tar.gz builddir/build/SOURCES/
$mock -r nux-7-x86_64 --no-clean --copyin tvheadend-4.0.03182015-1.spec builddir/build/SPECS/tvheadend.spec
</pre>

shell in and confirm new source and spec are present and then build new src.rpm
<pre>
$mock -r nux-7-x86_64 --no-clean --shell
<mock>$ls -lah builddir/build/SOURCES
<mock>$ls -lah builddir/build/SPECS
<mock>$rpmbuild -bs builddir/build/SPECS/tvheadend.spec
<mock>$exit
</pre>

copy out the new src.rpm
<pre>
$mock -r nux-7-x86_64 --no-clean --copyout builddir/build/SRPMS/tvheadend-4.0.03182015-1.src.rpm ./
</pre>

build the new version from the source rpm
<pre>
$mock -r nux-7-x86_64 --rebuild tvheadend-4.0.03182015-1.src.rpm
</pre>

move the results to your working folder
<pre>
$cp /var/lib/mock/nux-7-x86_64/result/*.rpm ./
</pre>

h4. Install the RPM

<pre>
$sudo yum install /home/mock/tvheadend/tvheadend-4.0.03182015-1.x86_64.rpm
</pre>

h3. Gentoo

TODO: this needs adding

h2. Get Source

Next you must obtain the source code, this is hosted on "github":https://github.com/tvheadend/tvheadend.

To clone the repository simple run the command:

<pre>
$ git clone https://github.com/tvheadend/tvheadend.git
</pre>

h2. Configuring

TVHeadend comes with a configuration script that allows you to enable/disable optional components and set install paths, etc.

Most people will be fine with the defaults and can run:

<pre>
$ ./configure
</pre>

However for more advanced options, please run the following:

<pre>
$ ./configure --help
</pre>

And then re-run configure with the required options, i.e.:

<pre>
$ ./configure --disable-dvbscan
</pre>

h2. Compiling

To compile Tvheadend run:

<pre>
$ make
</pre>

h2. Installing

It is possible to install Tvheadend using make, based on the ./configure options, by running:

<pre>
$ sudo make install
</pre>

However it's recommend that you run from the build directory for development/testing (see [[Development]]):

<pre>
$ ./build.linux/tvheadend
</pre>

NOTE: its VERY important you run test builds from git root, so command should look similar to above.

And that you build a [[Packaging|package]] if you wish to install Tvheadend permanently and hook into the system start scripts etc.

Use of make install is not very traceable and so removal can sometimes be painful, and it might overwrite an existing installation.

h2. Packaging

For more information about packaging Tvheadend please see [[Packaging|here]]

h2. Reporting Problems

If you have problems with a custom compiled version of Tvheadend its important that any issue reports include details of the specific version of source you used. For more details please see [[bugreporting|here]].