This project is closed and read-only.
Packaging¶
To be able to install TVHeadend permanently on your system, or distribute to others, its highly recommend that you build a package.
But before you can do this make sure you have read the basic build instructions here
Different distributions will have different package formats, however TVHeadend comes with scripts to help build several common ones.
Ubuntu / Debian¶
To build a deb package for the latest version of Ubuntu (Precise, at the time of writing) you can do the following:
x86 32-bit
x86 64-bit
Note: Although the scripts are named precise (for Ubuntu 12.04) they will work just fine with most recent versions of Debian/Ubuntu.
Note: the generated deb will be in the directory above that containing Autobuild.sh (i.e. outside of the tvheadend directory).
Note: the -dbg package contains debug symbols, generally you won't need these.
Configure Options¶
You can also pass specific configuration options to the configure script by setting the AUTOBUILD_CONFIGURE_EXTRA environment variable.
Redhat / Centos / Fedora¶
Redhat/Centos/Fedora Build assumptions¶
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
Build Environment Configuration¶
create a user to do the building as -- this is not a requirement, but does provide a modicum of compartmentaliztion when building
for more details view the Centos/Fedora Mock pages starting
http://fedoraproject.org/wiki/Projects/MockGetting the files to work with¶
you'll also need a starter source rpm and specfile such as attached placed in the ~/tvheadend folder:
tvheadend-3.9.2618-git.e5dc86b.1.spec
tvheadend-3.9.2618-git.e5rc86b.1.el7.centos.src.rpmStep by Step Building the RPM¶
create the spec file for the next version note new and old are the revision stringsin this example tvheadend-new-spec would be tvheadend-3.9.2618-git.e5dc86b.1.spec
open the new spec and edit as follows
update the global commit string to match the current master commit - for ex. "e5dc86b3dd32f80c337da75cc0d2e00702c45fe1"
change the version string to match the new being built - - for ex. version "3.9-2618" note the revision is automatic
except for the 1,2,3 or whatever patch might be applied
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
switch to the git tvheadened master and export the archive file called for in the new spec to the ~/tvheadend folder
$cd ~/git/tvheadend $git archive e5dc86b3dd32f80c337da75cc0d2e00702c45fe1 --format=tar --prefix=tvheadend/ | gzip > ../tvheadend-3.9.2618-git.e5dc86b.tar.gz $mv ../tvheadend-3.9.2618-git.e5dc86b.tar.gz ~/tvheadend
the /nux-7-x86_64.cfg attached works for me with nux.ro's repo and centos7
[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
now build the previous version in the clean environment
copy in the new source tar and spec files
$mock -r nux-7-x86_64 --no-clean --copyin tvheadend-3.9.2618-git.e5dc86b.1.tar.gz builddir/build/SOURCES/ $mock -r nux-7-x86_64 --no-clean --copyin tvheadend-3.9.2618-git.e5dc86b.1.spec builddir/build/SPECS/tvheadend.spec
$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
$mock -r nux-7-x86_64 --no-clean --copyout builddir/build/SRPMS/tvheadend-3.9.2618-git.e5dc86b.1.el7.centos.src.rpm ./
move the results to your working folder
Install the RPM¶
Gentoo¶
tvheadend is now available in portage so you can just install it like you usually do with other applications:
ArchLinux¶
If you'd like to build the latest git master for Arch, then you can issue the following commands:
To install XBMC-PVR + Tvheadend:
Package Maintainers¶
If you wish to become a package maintainer for your favourite distribution, please contact a member of the development team.
Updated by Mark Clarkstone over 8 years ago · 15 revisions locked