Bug #3811
closedWhen will the raspberry pi builds come back in the apt-repository?
0%
Description
I've configured the unstable builds but didn't get any update since switching to bintray.
Are there any plans to bring these builds back?
Al
Updated by Nihil Baxter almost 9 years ago
You can easily build tvheadend on your pi, maybe you could test my builds https://nihil.selfhost.eu/tvheadend/nightly/ , from time to time i build new tvheadend for myself... I setup my own repo, but thats not reachable from outside of my network ;)
Updated by Al Bundy almost 9 years ago
But I don't want to care about compiler options and build environments.
I just want to get the latest version with an apt-get upgrade. :)
I know - I'm lazy... :)
Updated by Stefan Berger almost 9 years ago
From your builds on https://nihil.selfhost.eu/tvheadend/nightly/ the last I could install on a RasPi2 was tvheadend_4.1-1727. The newer ones all bring unsatisfied dependencies like libavcodec56, libavformat56 etc. that I wasn't able to find nor install. I tried to install on the latest Jessie Lite Version (2016-05-27-raspbian-jessie-lite)
Unfortunately on nihil.selfhost.eu there are no instructions. I am almost sure the is one super package to install that includes all those missing parts. ;)
Any hints ?
Thanks for your help.
Updated by Al Bundy over 7 years ago
For all that want to build tvheadend from git here is my build.sh.
#!/bin/bash BASE=$(dirname "$0") ( if [ -d "$BASE/tvheadend" ]; then cd "$BASE/tvheadend" git pull else cd "$BASE" git clone https://github.com/tvheadend/tvheadend.git tvheadend cd "$BASE/tvheadend" fi #AUTOBUILD_CONFIGURE_EXTRA="--disable-libvpx --disable-bintray_cache" ./Autobuild.sh AUTOBUILD_CONFIGURE_EXTRA="--disable-libvpx_static --disable-bintray_cache" ./Autobuild.sh ) 2>&1 | tee "$BASE/build.log"