Forums » Tutorial and setups »
Install Tvheadend on CentOS 7
Added by He-Man Mattel about 8 years ago
Hi
I am trying to install Tvheadend on a fresh installed CentOS 7. I would like to configure, compile and install Tvheadend package from scratch, but I have run into some issues.
First I install CentOS Development Tools as described in https://tvheadend.org/projects/tvheadend/wiki/Building:
sudo yum groupinstall "Development Tools"
Then I install the following dependencies as described in https://tvheadend.org/projects/tvheadend/wiki/Building:
sudo yum install zlib-devel avahi-devel dbus-devel openssl-devel python
Then I clone the Tvheadend GIT repository:
sudo git clone https://github.com/tvheadend/tvheadend.git
Then I try to configure the Tvheadend source code:
sudo ./configure
With the following output:
Checking support/features checking for cc execinfo.h ... ok checking for cc -mmmx ... ok checking for cc -msse2 ... ok checking for cc -Wunused-result ... ok checking for cc getloadavg ... ok checking for cc atomic64 ... ok checking for cc atomic_time_t ... ok checking for cc bitops64 ... ok checking for cc lockowner ... ok checking for cc qsort_r ... ok checking for cc stime ... ok checking for cc gmtoff ... ok checking for cc recvmmsg ... ok checking for cc sendmmsg ... ok checking for cc libiconv ... fail checking for cc libdvben50221 ... fail checking for cc ifnames ... ok checking for py module gzip ... ok checking for pkg-config ... ok checking for xgettext ... ok checking for msgmerge ... ok checking for gzip ... ok checking for bzip2 ... ok checking for pkg openssl ... ok (detected 1.0.1e) checking for cc linux/dvb/version.h ... ok checking for pkg zlib ... ok (detected 1.2.7) checking for pkg liburiparser ... fail (detected <none>) checking for pkg avahi-client ... ok (detected 0.6.31) checking for cmake ... fail ERROR: cmake not found
Which YUM packages are missing against to libiconv, libdvben50221, liburiparser and cmake checking fails?
Does anyone have a solution?
Thanks in advance.
Replies (1)
RE: Install Tvheadend on CentOS 7 - Added by saen acro about 8 years ago
Cent and all RPM distros are not so multimedia friendly.
Compile from source
linuxtv-dvb-apps for libdvben50221
http://www.gnu.org/software/libiconv/
http://uriparser.sourceforge.net
https://cmake.org/download/
rest of packages
uriparser-devel dbus-devel
# ./configure Checking support/features checking for cc execinfo.h ... ok checking for cc -mmmx ... ok checking for cc -msse2 ... ok checking for cc -Wunused-result ... ok checking for cc getloadavg ... ok checking for cc atomic32 ... ok checking for cc atomic64 ... ok checking for cc atomic_time_t ... ok checking for cc bitops64 ... ok checking for cc lockowner ... ok checking for cc qsort_r ... ok checking for cc stime ... ok checking for cc gmtoff ... ok checking for cc recvmmsg ... ok checking for cc sendmmsg ... ok checking for cc libiconv ... fail checking for cc libdvben50221 ... fail checking for cc ifnames ... ok checking for py module gzip ... ok checking for pkg-config ... ok checking for xgettext ... ok checking for msgmerge ... ok checking for gzip ... ok checking for bzip2 ... ok checking for pkg openssl ... ok (detected 1.0.2k) checking for cc linux/dvb/version.h ... ok checking for pkg zlib ... ok (detected 1.2.7) checking for pkg libpcre2-8 ... fail (detected <none>) checking for pkg libpcre ... ok (detected 8.32) checking for pkg liburiparser ... ok (detected 0.7.5) checking for pkg avahi-client ... ok (detected 0.6.31) checking for cmake ... ok checking for cc -lstdc++ ... ok checking for pkg libva >=0.38.0 ... fail (detected 0.35.0) checking for cc sys/inotify.h ... ok checking for cc inotify_init1 ... ok fetching dvb-scan files ... ok checking for cc epoll_create1 ... ok checking for pkg dbus-1 ... ok (detected 1.6.12) Compiler: Using C compiler: cc Build for arch: x86_64 Binaries: Using PYTHON: python Using GZIP: gzip Using BZIP2: bzip2 Options: pie yes ccdebug no cwc yes cccam yes capmt yes constcw yes linuxdvb yes satip_server yes satip_client yes hdhomerun_client yes hdhomerun_static yes iptv yes tsfile yes dvbscan yes timeshift yes trace yes imagecache yes avahi yes zlib yes libav yes ffmpeg_static yes libx264 yes libx264_static yes libx265 yes libx265_static yes libvpx yes libvpx_static yes libtheora yes libtheora_static yes libvorbis yes libvorbis_static yes libfdkaac no libfdkaac_static no libopus yes libopus_static yes nvenc no vaapi no mmal no omx no inotify yes epoll yes pcre yes pcre2 no uriparser yes ccache no tvhcsa yes bundle no pngquant no dvbcsa no dvben50221 no kqueue no dbus_1 yes android no tsdebug no gtimer_check no slow_memoryinfo no libsystemd_daemon no bintray_cache yes execinfo yes mmx yes sse2 yes W_unused_result yes getloadavg yes atomic32 yes atomic64 yes atomic_time_t yes bitops64 yes lockowner yes qsort_r yes stime yes gmtoff yes recvmmsg yes sendmmsg yes ifnames yes py_gzip yes bin_pkg_config yes bin_xgettext yes bin_msgmerge yes bin_gzip yes bin_bzip2 yes ssl yes linuxdvbapi yes upnp yes bin_cmake yes stdcpp yes libogg_static yes inotify_h yes inotify_init1 yes epoll_create1 yes mpegts yes mpegts_dvb yes Packages: openssl 1.0.2k zlib 1.2.7 libpcre 8.32 liburiparser 0.7.5 avahi-client 0.6.31 dbus-1 1.6.12 Installation paths: Prefix: /usr/local Binaries: ${prefix}/bin Libraries: ${prefix}/lib Data files: ${prefix}/share Man pages: ${datadir}/man Final Binary: /opt/tvheadend/build.linux/tvheadend Tvheadend Data Directory: /usr/local/share/tvheadend