mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-24 11:26:19 +00:00
6fb5ad6fee
* libCEC: Update to 6.0.2 * L4T: Switch-bsp: Fix typos * Switch: Fix all permission issues with running kodi as a non-root user. * L4T: Switch: Minor code cleanups * Add upower and libgudev so kodi can get battery stats Upower was removed from libreELEC in 2013 with this commit: 3a130cd5009c8d3595b8afcde2421324572ce58b This was a stupid choice as it is the only option in kodi for supplying any battery statitistics. Currently broken. This patchset: https://github.com/xbmc/xbmc/pull/17327/commits for kodi seemingliy wants to fix the issue(Doesnt, is more of a new way to deal with dbus in general), but will still require that upower be available for battery. * Switch: LibreELEC: Peripheral.Joystick: Fix Add Patches from PR's upstream to fix issues with udev devices * Switch: LibreElec: Peripheral.Joystick: Add Nintendo Switch udev joystick mappings * Switch: LibreELEC: Peripheral.Joystick: Force Udev controller driver as default.
43 lines
1.6 KiB
Makefile
43 lines
1.6 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="libcec"
|
|
PKG_VERSION="6.0.2"
|
|
PKG_SHA256="090696d7a4fb772d7acebbb06f91ab92e025531c7c91824046b9e4e71ecb3377"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="http://libcec.pulse-eight.com/"
|
|
PKG_URL="https://github.com/Pulse-Eight/libcec/archive/libcec-${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain systemd p8-platform swig:host"
|
|
PKG_LONGDESC="libCEC is an open-source dual licensed library designed for communicating with the Pulse-Eight USB - CEC Adaptor."
|
|
|
|
PKG_CMAKE_OPTS_TARGET="-DBUILD_SHARED_LIBS=1 \
|
|
-DCMAKE_INSTALL_LIBDIR:STRING=lib \
|
|
-DCMAKE_INSTALL_LIBDIR_NOARCH:STRING=lib \
|
|
-DSKIP_PYTHON_WRAPPER=1 \
|
|
-DHAVE_IMX_API=0 \
|
|
-DHAVE_AOCEC_API=0 -DHAVE_AMLOGIC_API=0 \
|
|
-DHAVE_GIT_BIN=0 \
|
|
-DHAVE_RPI_LIB=0"
|
|
|
|
# libX11 and xrandr to read the sink's EDID, used to determine the PC's HDMI physical address
|
|
if [ "${DISPLAYSERVER}" = "x11" ]; then
|
|
PKG_DEPENDS_TARGET+=" libX11 libXrandr"
|
|
fi
|
|
|
|
if [ "${CEC_FRAMEWORK_SUPPORT}" = "yes" ]; then
|
|
PKG_CMAKE_OPTS_TARGET+=" -DHAVE_LINUX_API=1"
|
|
else
|
|
PKG_CMAKE_OPTS_TARGET+=" -DHAVE_LINUX_API=0"
|
|
fi
|
|
|
|
post_makeinstall_target() {
|
|
# Remove the Python3 demo - useless for us
|
|
rm -f ${INSTALL}/usr/bin/pyCecClient
|
|
|
|
PYTHON_DIR=${INSTALL}/usr/lib/${PKG_PYTHON_VERSION}
|
|
if [ -d ${PYTHON_DIR}/dist-packages ]; then
|
|
mv ${PYTHON_DIR}/dist-packages ${PYTHON_DIR}/site-packages
|
|
fi
|
|
}
|