mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-03-01 05:41:22 +00:00
- package moved to lakka packages, as it is not shared with upstream - package updated to latest version - Switch options adjusted to exclude the driver
32 lines
1.1 KiB
Makefile
32 lines
1.1 KiB
Makefile
PKG_NAME="xpadneo"
|
|
PKG_VERSION="0.9.7"
|
|
PKG_SHA256="0af52aa1e800a49ae6623ef545d9ed541f3a1fcfeac586bf27caf8185524e7c3"
|
|
PKG_LICENSE="GPLv3"
|
|
PKG_SITE="https://github.com/atar-axis/xpadneo"
|
|
PKG_URL="${PKG_SITE}/archive/refs/tags/v${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain linux"
|
|
PKG_NEED_UNPACK="${LINUX_DEPENDS}"
|
|
PKG_LONGDESC="Advanced Linux Driver for Xbox One Wireless Gamepad"
|
|
PKG_TOOLCHAIN="manual"
|
|
PKG_IS_KERNEL_PKG="yes"
|
|
|
|
pre_make_target() {
|
|
unset LDFLAGS
|
|
}
|
|
|
|
make_target() {
|
|
kernel_make -C $(kernel_path) M=${PKG_BUILD}/hid-xpadneo/src modules
|
|
}
|
|
|
|
makeinstall_target() {
|
|
mkdir -p ${INSTALL}/$(get_full_module_dir)/kernel/drivers/hid
|
|
cp -v ${PKG_BUILD}/hid-xpadneo/src/*.ko ${INSTALL}/$(get_full_module_dir)/kernel/drivers/hid/
|
|
|
|
mkdir -p ${INSTALL}/usr/lib/udev/rules.d
|
|
cp -v ${PKG_BUILD}/hid-xpadneo/etc-udev-rules.d/*.rules ${INSTALL}/usr/lib/udev/rules.d/
|
|
|
|
mkdir -p ${INSTALL}/usr/lib/modprobe.d
|
|
cp -v ${PKG_BUILD}/hid-xpadneo/etc-modprobe.d/*.conf ${INSTALL}/usr/lib/modprobe.d/
|
|
echo "options hid_xpadneo trigger_rumble_mode=2" >> ${INSTALL}/usr/lib/modprobe.d/xpadneo.conf
|
|
}
|