mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
21f956598d
* Drop SRCPV similarly like oe-core did in: https://git.openembedded.org/openembedded-core/commit/?h=nanbield&id=843f82a246a535c353e08072f252d1dc78217872 * SRCPV is deferred now from PV to PKGV since: https://git.openembedded.org/openembedded-core/commit/?h=nanbield&id=a8e7b0f932b9ea69b3a218fca18041676c65aba0 Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
37 lines
1.0 KiB
BlitzBasic
37 lines
1.0 KiB
BlitzBasic
SUMMARY = "Tvheadend: TV streaming server and recorder"
|
|
HOMEPAGE = "https://tvheadend.org/"
|
|
|
|
inherit autotools-brokensep gettext gitpkgv pkgconfig
|
|
|
|
DEPENDS = "avahi cmake-native dvb-apps libdvbcsa libpcre2 openssl uriparser zlib"
|
|
|
|
LICENSE = "GPL-3.0-or-later"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.md;md5=9cae5acac2e9ee2fc3aec01ac88ce5db"
|
|
|
|
SRC_URI = "git://github.com/tvheadend/tvheadend.git;branch=master;protocol=https \
|
|
file://0001-adjust-for-64bit-time_t.patch \
|
|
"
|
|
|
|
SRCREV = "cc602833684953fc3e6f1c89d4f08f6dfef179e3"
|
|
PV = "4.3+git"
|
|
PKGV = "4.3+git${GITPKGV}"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
EXTRA_OECONF += "--arch=${TARGET_ARCH} \
|
|
--disable-hdhomerun_static \
|
|
--disable-ffmpeg_static \
|
|
--disable-libav \
|
|
--python=python3 \
|
|
--disable-dvbscan \
|
|
"
|
|
|
|
EXTRA_OECONF:append:libc-musl = " --disable-execinfo"
|
|
|
|
EXTRA_OEMAKE = "CFLAGS_NO_WERROR=yes"
|
|
CLEANBROKEN = "1"
|
|
|
|
do_configure:append() {
|
|
sed -i -e "s|${WORKDIR}|<TOPDIR>|g" ${B}/build.linux/build.c
|
|
}
|