libretro-mupen64plus-next-1.0_pre20221001vortex
download
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
LIBRETRO_REPO_NAME="libretro/mupen64plus-libretro-nx"
LIBRETRO_COMMIT_SHA="29717c0b6e1be8c7b46dbd2801a275a72208ffea"
inherit libretro-core toolchain-funcs
DESCRIPTION="Improved mupen64plus libretro core reimplementation"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
media-libs/libpng:=
virtual/opengl
"
DEPEND="${RDEPEND}
dev-lang/nasm
"
src_compile() {
local ARCH=$(tc-arch)
if [[ "${ARCH}" == "amd64" ]]; then
ARCH="x86_64"
fi
myemakeargs="WITH_DYNAREC=${ARCH}" \
libretro-core_src_compile
}