# SPDX-License-Identifier: GPL-2.0-or-later # Copyright (C) 2019-present Shanti Gilbert (https://github.com/shantigilbert) # Copyright (C) 2023 Nicholas Ricciuti (rishooty@gmail.com) # Copyright (C) 2023 Fewtarius (fewtarius@jelos.org) PKG_NAME="mupen64plus-sa-rsp-cxd4" PKG_VERSION="0a4e30f56033396e3ba47ec0fdd7acea3522362a" PKG_LICENSE="GPLv2" PKG_SITE="https://github.com/mupen64plus/mupen64plus-rsp-cxd4" PKG_URL="${PKG_SITE}.git" PKG_DEPENDS_TARGET="toolchain libpng SDL2 SDL2_net zlib freetype nasm:host mupen64plus-sa-core" PKG_SHORTDESC="mupen64plus-rsp-cxd4" PKG_LONGDESC="Mupen64Plus Standalone RSP CXD4" PKG_TOOLCHAIN="manual" PKG_BUILD_FLAGS="-fpic" case ${DEVICE} in AMD64|RK3588|S922X) PKG_DEPENDS_TARGET+=" mupen64plus-sa-simplecore" ;; esac if [ "${OPENGL_SUPPORT}" = "yes" ] then PKG_DEPENDS_TARGET+=" ${OPENGL} glu libglvnd" else PKG_DEPENDS_TARGET+=" ${OPENGLES}" fi make_target() { if [ "${OPENGL_SUPPORT}" = "yes" ] then export USE_GLES=0 else export USE_GLES=1 fi export HOST_CPU=${TARGET_ARCH} \ VFP_HARD=1 \ NEW_DYNAREC=1 \ V=1 \ VC=0 \ OSD=0 case ${TARGET_ARCH} in x86_64) export SUFFIX="-sse2" export HLEVIDEO=1 ;; *) export HLEVIDEO=0 ;; esac export BINUTILS="$(get_build_dir binutils)/.${TARGET_NAME}" export APIDIR=$(get_build_dir mupen64plus-sa-core)/src/api export SDL_CFLAGS="-I${SYSROOT_PREFIX}/usr/include/SDL2 -pthread -D_REENTRANT" export SDL_LDLIBS="-lSDL2_net -lSDL2" export CROSS_COMPILE="${TARGET_PREFIX}" make -C projects/unix clean make -C projects/unix all ${PKG_MAKE_OPTS_TARGET} cp ${PKG_BUILD}/projects/unix/mupen64plus-rsp-cxd4${SUFFIX}.so ${PKG_BUILD}/projects/unix/mupen64plus-rsp-cxd4-base.so case ${DEVICE} in AMD64|RK3588|S922X) PKG_MAKE_OPTS_TARGET+=" cxd4VIDEO=1" export APIDIR=$(get_build_dir mupen64plus-sa-simplecore)/src/api make -C projects/unix all ${PKG_MAKE_OPTS_TARGET} cp ${PKG_BUILD}/projects/unix/mupen64plus-rsp-cxd4${SUFFIX}.so ${PKG_BUILD}/projects/unix/mupen64plus-rsp-cxd4-simple.so ;; esac } makeinstall_target() { UPREFIX=${INSTALL}/usr/local ULIBDIR=${UPREFIX}/lib UPLUGINDIR=${ULIBDIR}/mupen64plus mkdir -p ${UPLUGINDIR} cp ${PKG_BUILD}/projects/unix/mupen64plus-rsp-cxd4-base.so ${UPLUGINDIR}/mupen64plus-rsp-cxd4.so chmod 0644 ${UPLUGINDIR}/mupen64plus-rsp-cxd4.so if [ -e "${PKG_BUILD}/projects/unix/mupen64plus-rsp-cxd4-simple.so" ] then cp ${PKG_BUILD}/projects/unix/mupen64plus-rsp-cxd4-simple.so ${UPLUGINDIR} chmod 0644 ${UPLUGINDIR}/mupen64plus-rsp-cxd4-simple.so fi }