Skip to content

Instantly share code, notes, and snippets.

@bkram
Last active November 20, 2017 08:54
Show Gist options
  • Save bkram/408b20f3ee914406bb8eecae06b2281a to your computer and use it in GitHub Desktop.
Save bkram/408b20f3ee914406bb8eecae06b2281a to your computer and use it in GitHub Desktop.
Simple script on to build a more recent tvheadend packages for Debian/Ubuntu Armhf (armbian)
#!/bin/bash
mkdir build
cd build
sudo apt install fakeroot debhelper pkg-config gettext libavahi-client-dev liburiparser-dev cmake dvb-apps
git clone https://github.com/tvheadend/tvheadend.git
cd tvheadend
git checkout v4.2.4
# the extra -fPIC was required on Ubuntu 16.04, not tested whether actually required on debian 8
AUTOBUILD_CONFIGURE_EXTRA=--disable-ffmpeg_static\ --CFLAGS=-fPIC ./Autobuild.sh
cd ..
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment