distribution/packages/games/emulators/mupen64plussa/mupen64plussa-rsp-hle/package.mk
fewtarius 8a02c98f85
* Add hypseus-singe emulator thanks to @EmuELEC.
* Update retroarch, cores, emulators, theme, and thememaster.
2022-04-18 17:25:10 -04:00

41 lines
1.5 KiB
Makefile

# 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="2ae723c33b86a75422a59c87a749e8cdfa8c9593"
PKG_SHA256="742353572fcc4a9fb1c163ac51838325f52b87505033fc42511451e8fc34dc2f"
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
}