mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-24 10:16:18 +00:00
c16def7032
* Switch: it builds * Switch: Use udev to finalize usb gadget to save from systemd looping service restart until cable connected. * Switch: Update kernel stuff again * Switch: Downgrade Alsa packages to version in 4.x tree * Joycond: Update Switch version * Switch: Minor fixes * LibreELEC: Fix a few broken files from upstream pull * Switch: Fix LibreELEC build. * Switch: Update bootloader stuff * L4T: FFMPEG: Add support for nvv4l2 decoder/encoder * FFMPEG: Add back encoder support for game recording in retroarch * FFMPEG: revert a few changes, and add support for vulkan.
56 lines
1.9 KiB
Makefile
56 lines
1.9 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
# Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="lirc"
|
|
PKG_VERSION="0.10.1"
|
|
PKG_SHA256="8b753c60df2a7f5dcda2db72c38e448ca300c3b4f6000c1501fcb0bd5df414f2"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="http://www.lirc.org"
|
|
PKG_URL="https://sourceforge.net/projects/lirc/files/LIRC/${PKG_VERSION}/${PKG_NAME}-${PKG_VERSION}.tar.bz2"
|
|
PKG_DEPENDS_TARGET="toolchain libftdi1 libusb-compat libxslt alsa-lib"
|
|
PKG_LONGDESC="LIRC is a package that allows you to decode and send infra-red signals."
|
|
PKG_TOOLCHAIN="autotools"
|
|
|
|
PKG_CONFIGURE_OPTS_TARGET="--enable-devinput \
|
|
--enable-uinput \
|
|
--with-gnu-ld \
|
|
--without-x \
|
|
--runstatedir=/run"
|
|
|
|
pre_configure_target() {
|
|
export HAVE_WORKING_POLL=yes
|
|
export HAVE_UINPUT=yes
|
|
export PYTHON=:
|
|
export PYTHON_VERSION=${PKG_PYTHON_VERSION#python}
|
|
if [ -e ${SYSROOT_PREFIX}/usr/include/linux/input-event-codes.h ]; then
|
|
export DEVINPUT_HEADER=${SYSROOT_PREFIX}/usr/include/linux/input-event-codes.h
|
|
else
|
|
export DEVINPUT_HEADER=${SYSROOT_PREFIX}/usr/include/linux/input.h
|
|
fi
|
|
}
|
|
|
|
post_makeinstall_target() {
|
|
rm -rf ${INSTALL}/usr/lib/systemd
|
|
rm -rf ${INSTALL}/lib
|
|
rm -rf ${INSTALL}/usr/share
|
|
rm -rf ${INSTALL}/etc
|
|
|
|
mkdir -p ${INSTALL}/etc/lirc
|
|
cp -r ${PKG_DIR}/config/lirc_options.conf ${INSTALL}/etc/lirc
|
|
ln -s /storage/.config/lircd.conf ${INSTALL}/etc/lirc/lircd.conf
|
|
|
|
mkdir -p ${INSTALL}/usr/lib/libreelec
|
|
cp ${PKG_DIR}/scripts/lircd_helper ${INSTALL}/usr/lib/libreelec
|
|
cp ${PKG_DIR}/scripts/lircd_uinput_helper ${INSTALL}/usr/lib/libreelec
|
|
|
|
mkdir -p ${INSTALL}/usr/share/services
|
|
cp -P ${PKG_DIR}/default.d/*.conf ${INSTALL}/usr/share/services
|
|
}
|
|
|
|
post_install() {
|
|
enable_service lircd.socket
|
|
enable_service lircd.service
|
|
enable_service lircd-uinput.service
|
|
}
|