Created
April 19, 2018 22:00
-
-
Save LS80/df578d771626c55ac9f1e4dfb0052d90 to your computer and use it in GitHub Desktop.
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
ENV BUILD_DIR="/tmp/tvheadend" | |
git clone https://github.com/tvheadend/tvheadend.git --branch="${VERSION}" "${BUILD_DIR}" && \ | |
"${BUILD_DIR}"/configure \ | |
--disable-cardclient \ | |
--disable-cwc \ | |
--disable-cccam \ | |
--disable-capmt \ | |
--disable-constcw \ | |
--disable-satip_server \ | |
--disable-satip_client \ | |
--disable-hdhomerun_static \ | |
--disable-iptv \ | |
--disable-imagecache \ | |
--disable-libav \ | |
--disable-ffmpeg_static \ | |
--disable-libx264 \ | |
--disable-libx264_static \ | |
--disable-libx265 \ | |
--disable-libx265_static \ | |
--disable-libvpx \ | |
--disable-libvpx_static \ | |
--disable-libtheora \ | |
--disable-libtheora_static \ | |
--disable-libvorbis \ | |
--disable-libvorbis_static \ | |
--disable-libfdkaac_static \ | |
--disable-libopus \ | |
--disable-libopus_static \ | |
--disable-vaapi \ | |
--disable-uriparser \ | |
--disable-tvhcsa \ | |
--disable-dbus_1 \ | |
--disable-bintray_cache \ | |
--infodir=/usr/share/info \ | |
--localstatedir=/var \ | |
--mandir=/usr/share/man \ | |
--prefix=/usr \ | |
--sysconfdir=/config && \ | |
make -C "${BUILD_DIR}" install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment