mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-07-25 21:34:49 +00:00
* Initial fully buildable/bootable Odin Support * Rework NX-Boot to FAT32 Boot for shared usage between switch and odin * Move shared packages from switch/odin to main packages folder
23 lines
942 B
Makefile
23 lines
942 B
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="xf86-input-libinput"
|
|
PKG_VERSION="0.30.0"
|
|
PKG_SHA256="f9c7f9fd41ae14061e0e9c3bd45fa170e5e21027a2bc5810034e1e748db996c0"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="http://www.freedesktop.org/wiki/Software/libinput/"
|
|
PKG_URL="http://xorg.freedesktop.org/archive/individual/driver/${PKG_NAME}-${PKG_VERSION}.tar.bz2"
|
|
PKG_DEPENDS_TARGET="toolchain libinput xorg-server"
|
|
PKG_LONGDESC="This is an X driver based on libinput."
|
|
PKG_TOOLCHAIN="autotools"
|
|
|
|
PKG_CONFIGURE_OPTS_TARGET="--with-xorg-module-dir=${XORG_PATH_MODULES}"
|
|
|
|
[ "${PROJECT}" = "L4T" -a "${DEVICE}" = "Switch" ] && PKG_DEPENDS_TARGET+=" xorg-server" || true
|
|
|
|
post_makeinstall_target() {
|
|
mkdir -p ${INSTALL}/usr/share/X11/xorg.conf.d
|
|
cp ${PKG_BUILD}/conf/*-libinput.conf ${INSTALL}/usr/share/X11/xorg.conf.d
|
|
}
|