609de5f8e8
* Update emulators and cores. * Adds fake08, thanks to Lakka-LibreELEC. * Adds GPU power saving option for handheld builds. * Updates SDL2, reverts Mesa (may be temporary). * Improves fan curve for supported devices.
24 lines
684 B
Makefile
24 lines
684 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2022-present BrooksyTech (https://github.com/brooksytech)
|
|
|
|
PKG_NAME="mesen"
|
|
PKG_VERSION="c89474c9d87df967d21b7b7d5971dc9475fec028"
|
|
PKG_ARCH="any"
|
|
PKG_LICENSE="GPLv3"
|
|
PKG_SITE="https://github.com/libretro/Mesen"
|
|
PKG_URL="$PKG_SITE/archive/$PKG_VERSION.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_PRIORITY="optional"
|
|
PKG_SECTION="libretro"
|
|
PKG_SHORTDESC="Mesen is a cross-platform NES/Famicom emulator for Windows & Linux built in C++ and C#."
|
|
PKG_TOOLCHAIN="make"
|
|
|
|
make_target() {
|
|
make -C Libretro/
|
|
}
|
|
|
|
|
|
makeinstall_target() {
|
|
mkdir -p $INSTALL/usr/lib/libretro
|
|
cp Libretro/mesen_libretro.so $INSTALL/usr/lib/libretro/
|
|
}
|