# SPDX-License-Identifier: GPL-2.0-or-later # Copyright (C) 2019-present Shanti Gilbert (https://github.com/shantigilbert) PKG_NAME="mupen64plussa-rsp-hle" PKG_VERSION="27580a8c33f0d66fa2f02582d45975f23fe2b1aa" PKG_SHA256="a266608f38c81ca1f4b39dbecd85daca02611e3a7dec52115fa475de8e55963a" PKG_ARCH="any" PKG_LICENSE="GPLv2" PKG_SITE="https://github.com/mupen64plus/mupen64plus-rsp-hle" PKG_URL="https://github.com/mupen64plus/mupen64plus-rsp-hle/archive/${PKG_VERSION}.tar.gz" PKG_DEPENDS_TARGET="toolchain ${OPENGLES} libpng SDL2 SDL2_net zlib freetype nasm:host mupen64plussa-core" PKG_SHORTDESC="mupen64plus-rsp-hle" PKG_LONGDESC="Mupen64Plus Standalone RSP HLE" PKG_TOOLCHAIN="manual" PKG_MAKE_OPTS_TARGET+="USE_GLES=1" make_target() { export HOST_CPU=aarch64 export APIDIR=$(get_build_dir mupen64plussa-core)/.install_pkg/usr/local/include/mupen64plus export USE_GLES=1 export SDL_CFLAGS="-I$SYSROOT_PREFIX/usr/include/SDL2 -D_REENTRANT" export SDL_LDLIBS="-lSDL2_net -lSDL2" export CROSS_COMPILE="$TARGET_PREFIX" export V=1 export VC=0 BINUTILS="$(get_build_dir binutils)/.aarch64-libreelec-linux-gnueabi" make -C projects/unix clean make -C projects/unix all ${PKG_MAKE_OPTS_TARGET} } makeinstall_target() { UPREFIX=${INSTALL}/usr/local ULIBDIR=${UPREFIX}/lib UPLUGINDIR=${ULIBDIR}/mupen64plus mkdir -p ${UPLUGINDIR} cp ${PKG_BUILD}/projects/unix/mupen64plus-rsp-hle.so ${UPLUGINDIR} #$STRIP ${UPLUGINDIR}/mupen64plus-rsp-hle.so chmod 0644 ${UPLUGINDIR}/mupen64plus-rsp-hle.so }