- Edited
I put together this script.
On a pristine Ubuntu v24 system, it will:
- Download all dependencies.
- Download TVH source files.
- Build the TVH application.
- Install the TVH application.
It builds TVH inside your home directory in a subdirectory called 'tvh-build'.
It will install TVH components into '/usr/local/bin/tvheadend' and '/usr/local/share/tvheadend'.
You will be prompted for your password on multiple occasions.
You will still need to manually create a user or whatever and add TVH to systemd.
You will need to make sure that the firmware for your DTV hardware is installed.
It worked for me, on my test system and TVH was able to scan services and receive OTA EPG data. I did no further testing.
Use this script at you own risk. It took at least 30 minutes to build TVH on my system, your timing may differ. There is no warranty or guarantee of support expressed or implied whatsoever.
#!/bin/bash
cd ~
mkdir tvh-build
cd ~/tvh-build
sudo apt install build-essential git pkg-config libssl-dev bzip2 wget libavahi-client-dev zlib1g-dev libavcodec-dev libavutil-dev libavformat-dev libswscale-dev liburiparser-dev libbsd-dev gettext cmake libdvbcsa-dev python-is-python3
git clone https://github.com/tvheadend/tvheadend.git
cd tvheadend
./configure
make
sudo make install
Good luck.