Package Details: tvheadend 4.2.8-8

Git Clone URL: https://aur.archlinux.org/tvheadend.git (read-only, click to copy)
Package Base: tvheadend
Description: TV streaming server for Linux
Upstream URL: https://tvheadend.org/
Keywords: tvheadend
Licenses: GPL-3.0-only
Submitter: BELzEBUB
Maintainer: fossdd
Last Packager: fossdd
Votes: 115
Popularity: 0.000017
First Submitted: 2012-10-25 08:49 (UTC)
Last Updated: 2025-05-14 06:50 (UTC)

Dependencies (9)

Required by (0)

Sources (5)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 9 .. 25 Next › Last »

pokabjoern commented on 2022-01-30 22:30 (UTC)

@aphirst If you don't need HDHomeRun support, simply edit the PKGBUILD as follows:

Add this to the ./configure section:

        --disable-hdhomerun_static \
        --disable-hdhomerun_client \

and this to the build() section one line above the make command:

CFLAGS="$CFLAGS -Wno-error=format-truncation -Wno-error=implicit-function-declaration"

Tvheadend will build fine after these changes.

francoism90 commented on 2021-10-23 18:40 (UTC) (edited on 2021-10-23 18:41 (UTC) by francoism90)

@willemw tvheadend-git includes those changes. If you want the stable build, you can include the improvements yourself. :)

I don't know if @LukyLX wants to bump this, TVH doesn't seem to provide any newer stable builds atm.

willemw commented on 2021-10-22 10:08 (UTC)

provides=('tvheadend') is redundant. conflicts=('tvheadend-git') does not need to be specified (as stated in the Wiki). tar is already installed (part of base).

Maybe use install instead of chmod and maybe switch to using systemd's sysusers.d and tmpfiles.d folders.

aphirst commented on 2021-10-22 09:19 (UTC)

Build now unfortunately fails.

http://download.silicondust.com/hdhomerun/libhdhomerun_20171221.tgz: 2021-10-22 10:18:40 ERROR 404: Not Found. make[1]: *** [Makefile.hdhomerun:79: /home/adam/.cache/aurutils/sync/tvheadend/src/tvheadend-4.2.8/build.linux/hdhomerun/libhdhomerun_20171221/.tvh_download] Error 8

holunder commented on 2021-03-24 12:28 (UTC) (edited on 2021-03-24 17:43 (UTC) by holunder)

I had to recompile it after last day’s system updates. Now I get into the web interface again but cannot start any stream. Edit: Just had to reconnect the DVB-T2 usb cable.

pelle commented on 2020-11-02 08:08 (UTC)

@RoKoInfo

Thx for your help. I use the armv7l architecture. If I use the two flags mentioned, the error message also appears, see @pokabjoern. Seems to me like it has to do with architecture.

pelle

RoKoInfo commented on 2020-11-01 12:12 (UTC) (edited on 2020-11-01 12:13 (UTC) by RoKoInfo)

When trying to compile for armv7h, I needed both flags, -Wno-error=format-truncation and -Wno-error=stringop-truncation. Compiling was successful, however, I do not know right now, if tvheadend works fine with it.

RoKoInfo

pelle commented on 2020-10-20 12:40 (UTC)

@Neil

Thx for the patch. Even when I use the patch, I get the same error message as described by @pokabjoern.

Meanwhile I'm at a loss.

Pelle

Neil commented on 2020-10-03 19:27 (UTC)

@pelle

Here's my git diff:

# git diff
diff --git a/PKGBUILD b/PKGBUILD
index 5a45b9f..5795410 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -30,6 +30,8 @@ sha256sums=    ('1aef889373d5fad2a7bd2f139156d4d5e34a64b6d38b87b868a2df415f01f7ad'
 prepare() {
     cd "${srcdir}/${pkgname}-${pkgver}"

+    CFLAGS="${CFLAGS} -Wno-error=format-truncation"
+
     # Patch tvheadend.service for Arch Linux
     patch -p1 -i "${srcdir}/tvheadend-service.patch"

As you can see I just added the line above to the prepare() function in PKGBUILD.

Hope this helps,

Neil.