distribution/packages/games/tools/gamecontrollerdb/package.mk

25 lines
696 B
Makefile
Raw Normal View History

2022-02-05 14:23:32 +00:00
# SPDX-License-Identifier: Apache-2.0
# Copyright (C) 2021-present Fewtarius (https://github.com/fewtarius)
PKG_NAME="gamecontrollerdb"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="GPL"
PKG_DEPENDS_TARGET="toolchain SDL2"
PKG_SECTION="tools"
PKG_SHORTDESC="SDL Game Controller DB"
PKG_TOOLCHAIN="manual"
make_target() {
echo
}
makeinstall_target() {
mkdir -p ${INSTALL}/usr/config/SDL-GameControllerDB
2022-02-12 14:27:22 +00:00
if [ -d "${PKG_DIR}/sources/${DEVICE}" ]
then
cat ${PKG_DIR}/sources/${DEVICE}/gamecontrollerdb.txt >${INSTALL}/usr/config/SDL-GameControllerDB/gamecontrollerdb.txt
2022-02-05 14:23:32 +00:00
fi
cat ${PKG_DIR}/sources/gamecontrollerdb.txt >>${INSTALL}/usr/config/SDL-GameControllerDB/gamecontrollerdb.txt
}