mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-22 08:06:25 +00:00
760bfe2c6c
Signed-off-by: CvH <namerp@googlemail.com>
135 lines
4.7 KiB
Makefile
135 lines
4.7 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="tvheadend43"
|
|
PKG_VERSION="905b4f0d0387818cbbf7012bf4dffb25e9893748"
|
|
PKG_SHA256="3decc29681e7eefac7a734116078b6f36fa125d81c8b9c9998b96070fcbe53a0"
|
|
PKG_VERSION_NUMBER="4.3-2091"
|
|
PKG_REV="0"
|
|
PKG_ARCH="any"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="http://www.tvheadend.org"
|
|
PKG_URL="https://github.com/tvheadend/tvheadend/archive/${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain avahi comskip curl dvb-apps ffmpegx libdvbcsa libhdhomerun \
|
|
libiconv openssl pcre2 pngquant:host Python3:host tvh-dtv-scan-tables"
|
|
PKG_DEPENDS_CONFIG="ffmpegx"
|
|
PKG_SECTION="service"
|
|
PKG_SHORTDESC="Tvheadend: a TV streaming server for Linux"
|
|
PKG_LONGDESC="Tvheadend (${PKG_VERSION_NUMBER}): is a TV streaming server for Linux supporting DVB-S/S2, DVB-C, DVB-T/T2, IPTV, SAT>IP, ATSC and ISDB-T"
|
|
PKG_BUILD_FLAGS="-sysroot"
|
|
|
|
PKG_IS_ADDON="yes"
|
|
PKG_ADDON_NAME="Tvheadend Server 4.3 (Alpha)"
|
|
PKG_ADDON_TYPE="xbmc.service"
|
|
|
|
# basic transcoding options
|
|
PKG_TVH_TRANSCODING="\
|
|
--disable-ffmpeg_static \
|
|
--disable-libfdkaac_static \
|
|
--disable-libopus_static \
|
|
--disable-libtheora \
|
|
--disable-libtheora_static \
|
|
--disable-libvorbis_static \
|
|
--disable-libvpx_static \
|
|
--disable-libx264_static \
|
|
--disable-libx265_static \
|
|
--enable-libav \
|
|
--enable-libfdkaac \
|
|
--enable-libopus \
|
|
--enable-libvorbis \
|
|
--enable-libx264"
|
|
|
|
# hw specific transcoding options
|
|
if [ "${TARGET_ARCH}" = "x86_64" ]; then
|
|
PKG_DEPENDS_TARGET+=" libva"
|
|
# specific transcoding options
|
|
PKG_TVH_TRANSCODING="${PKG_TVH_TRANSCODING} \
|
|
--enable-vaapi \
|
|
--enable-libvpx \
|
|
--enable-libx265"
|
|
else
|
|
# for != "x86_64" targets
|
|
# specific transcoding options
|
|
PKG_TVH_TRANSCODING="${PKG_TVH_TRANSCODING} \
|
|
--disable-libvpx \
|
|
--disable-libx265"
|
|
fi
|
|
|
|
post_unpack() {
|
|
sed -e 's/VER="0.0.0~unknown"/VER="'${PKG_VERSION_NUMBER}' ~ LibreELEC Tvh-addon v'${ADDON_VERSION}'.'${PKG_REV}'"/g' -i ${PKG_BUILD}/support/version
|
|
sed -e 's|'/usr/bin/pngquant'|'${TOOLCHAIN}/bin/pngquant'|g' -i ${PKG_BUILD}/support/mkbundle
|
|
}
|
|
|
|
pre_configure_target() {
|
|
PKG_CONFIGURE_OPTS_TARGET="--prefix=/usr \
|
|
--arch=${TARGET_ARCH} \
|
|
--cpu=${TARGET_CPU} \
|
|
--cc=${CC} \
|
|
${PKG_TVH_TRANSCODING} \
|
|
--enable-avahi \
|
|
--enable-bundle \
|
|
--disable-dbus_1 \
|
|
--enable-dvbcsa \
|
|
--disable-dvben50221 \
|
|
--disable-dvbscan \
|
|
--enable-hdhomerun_client \
|
|
--disable-hdhomerun_static \
|
|
--enable-epoll \
|
|
--enable-inotify \
|
|
--enable-pngquant \
|
|
--disable-libmfx_static \
|
|
--disable-nvenc \
|
|
--disable-uriparser \
|
|
--enable-tvhcsa \
|
|
--enable-trace \
|
|
--nowerror \
|
|
--disable-bintray_cache \
|
|
--python=${TOOLCHAIN}/bin/python"
|
|
|
|
# fails to build in subdirs
|
|
cd ${PKG_BUILD}
|
|
rm -rf .${TARGET_NAME}
|
|
|
|
# pass ffmpegx to build
|
|
CFLAGS+=" -I$(get_install_dir ffmpegx)/usr/local/include"
|
|
LDFLAGS+=" -L$(get_install_dir ffmpegx)/usr/local/lib"
|
|
|
|
# pass libhdhomerun to build
|
|
CFLAGS+=" -I${SYSROOT_PREFIX}/usr/include/hdhomerun"
|
|
|
|
export CROSS_COMPILE="${TARGET_PREFIX}"
|
|
export CFLAGS+=" -I${SYSROOT_PREFIX}/usr/include/iconv -L${SYSROOT_PREFIX}/usr/lib/iconv"
|
|
}
|
|
|
|
post_make_target() {
|
|
${CC} -O -fbuiltin -fomit-frame-pointer -fPIC -shared -o capmt_ca.so src/extra/capmt_ca.c -ldl
|
|
}
|
|
|
|
post_makeinstall_target() {
|
|
mkdir -p ${INSTALL}/usr/lib
|
|
cp -p capmt_ca.so ${INSTALL}/usr/lib
|
|
}
|
|
|
|
addon() {
|
|
mkdir -p ${ADDON_BUILD}/${PKG_ADDON_ID}/{bin,lib}
|
|
|
|
cp ${PKG_DIR}/addon.xml ${ADDON_BUILD}/${PKG_ADDON_ID}
|
|
|
|
# set only version (revision will be added by buildsystem)
|
|
sed -e "s|@ADDON_VERSION@|${ADDON_VERSION}|g" \
|
|
-i ${ADDON_BUILD}/${PKG_ADDON_ID}/addon.xml
|
|
|
|
cp -P ${PKG_INSTALL}/usr/bin/tvheadend ${ADDON_BUILD}/${PKG_ADDON_ID}/bin
|
|
cp -P ${PKG_INSTALL}/usr/lib/capmt_ca.so ${ADDON_BUILD}/${PKG_ADDON_ID}/bin
|
|
cp -P $(get_install_dir comskip)/usr/bin/comskip ${ADDON_BUILD}/${PKG_ADDON_ID}/bin
|
|
|
|
if [ "${TARGET_ARCH}" = "x86_64" ]; then
|
|
cp -P $(get_install_dir x265)/usr/lib/libx265.so.199 ${ADDON_BUILD}/${PKG_ADDON_ID}/lib
|
|
fi
|
|
|
|
# dvb-scan files
|
|
mkdir -p ${ADDON_BUILD}/${PKG_ADDON_ID}/dvb-scan
|
|
cp -r $(get_install_dir tvh-dtv-scan-tables)/usr/share/dvbv5/* \
|
|
${ADDON_BUILD}/${PKG_ADDON_ID}/dvb-scan
|
|
}
|