32 lines
758 B
Makefile
32 lines
758 B
Makefile
# SPDX-License-Identifier: Apache-2.0
|
|
# Copyright (C) 2020-present Fewtarius
|
|
|
|
PKG_NAME="retroarch-joypads"
|
|
PKG_VERSION="f2123bbeeb7bb139aa34ca59490988de686f9c0b"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="https://github.com/libretro/retroarch-joypad-autoconfig"
|
|
PKG_URL="${PKG_SITE}.git"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_LONGDESC="RetroArch joypad autoconfigs."
|
|
PKG_TOOLCHAIN="manual"
|
|
|
|
make_target() {
|
|
:
|
|
}
|
|
|
|
makeinstall_target() {
|
|
INSTALLDIR="${INSTALL}/usr/share/libretro/autoconfig"
|
|
mkdir -p ${INSTALLDIR}
|
|
for JOYDIR in linuxraw sdl2 udev x xinput
|
|
do
|
|
cp ${PKG_BUILD}/${JOYDIR}/*cfg ${INSTALLDIR}
|
|
done
|
|
if [ -d "${PKG_DIR}/gamepads" ]
|
|
then
|
|
cp -r ${PKG_DIR}/gamepads/* ${INSTALLDIR} ||:
|
|
fi
|
|
}
|
|
|
|
post_install() {
|
|
enable_service tmp-joypads.mount
|
|
}
|