b2d76a6e53
* Optimize mupen64plus, plus-nx, and yabasanshiro a bit * Misc OS updates and bug fixes.
27 lines
766 B
Makefile
Executable file
27 lines
766 B
Makefile
Executable file
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2020-present Fewtarius
|
|
|
|
PKG_NAME="mupen64plus-nx"
|
|
PKG_VERSION="6e9dcd2"
|
|
PKG_ARCH="any"
|
|
PKG_LICENSE="GPLv2"
|
|
PKG_SITE="https://github.com/libretro/mupen64plus-libretro-nx"
|
|
PKG_URL="$PKG_SITE/archive/$PKG_VERSION.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain nasm:host ${OPENGLES}"
|
|
PKG_SECTION="libretro"
|
|
PKG_SHORTDESC="mupen64plus NX"
|
|
PKG_LONGDESC="mupen64plus NX"
|
|
PKG_TOOLCHAIN="make"
|
|
PKG_BUILD_FLAGS="-lto"
|
|
|
|
PKG_PATCH_DIRS+="${DEVICE}"
|
|
|
|
pre_configure_target() {
|
|
sed -e "s|^GIT_VERSION ?.*$|GIT_VERSION := \" ${PKG_VERSION:0:7}\"|" -i Makefile
|
|
PKG_MAKE_OPTS_TARGET+=" platform=RK3399"
|
|
}
|
|
|
|
makeinstall_target() {
|
|
mkdir -p $INSTALL/usr/lib/libretro
|
|
cp mupen64plus_next_libretro.so $INSTALL/usr/lib/libretro/
|
|
}
|