tvheadend apt build dependancies
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # tvheadend build dependancies (ubuntu) | |
| # Install dependancies | |
| RUN apt-get update -qq && apt-get install -qqy \ | |
| # for downloading stuff etc | |
| git wget libcurl4-gnutls-dev | |
| # for building stuff | |
| build-essential pkg-config debhelper libssl-dev liburiparser-dev | |
| # for packaging stuff etc | |
| zlib1g-dev bzip2 | |
| # for packaging bundle webui files (needed) | |
| python | |
| # for avahi support | |
| libavahi-client-dev | |
| # for hd homerun | |
| libhdhomerun-dev | |
| # for libav / ffmpeg & extra tv-related codecs | |
| libavcodec-dev libavutil-dev libavformat-dev libswscale-dev libavresample-dev libavfilter-dev \ | |
| libavcodec-extra a52dec | |
| && $_apt_clean |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment