Skip to content

Instantly share code, notes, and snippets.

@Finkregh
Last active December 18, 2015 07:09
Show Gist options
  • Save Finkregh/5744061 to your computer and use it in GitHub Desktop.
Save Finkregh/5744061 to your computer and use it in GitHub Desktop.
build tvheadend on raspberypi (debian)
# see <https://tvheadend.org/projects/tvheadend/wiki/Building>
# sudo apt-get install build-essential git pkg-config libssl-dev bzip2 wget libavahi-client-dev zlib1g-dev
# get the sources, checkout release 3.1
git clone -b 3.1 git://github.com/andoma/tvheadend.git
cd tvheadend ; git co -b local-3.1
# create debian/changelog, set package-name
dch -v 3.1 --create
sed -i 's/PACKAGE/tvheadend/' debian/changelog
# build package
debuild
# list created packages
ls -la ../*.deb
# install one .deb
sudo dpkg -i foo.deb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment