mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-04-06 01:54:31 +00:00
- update all cores to latest commit - update RetroArch to 1.20.0 - update core_info, database, shaders, joypad configs, overlays - retroarch: update patch - save to default config - mame: update patch - crosscompile - np2kai: rollback update - new libretro cores: - anarch - ardens - doukutsu_rs - lrps2 (supersedes pcsx2) - m2000 - melondsds - noods - panda3ds - pzretro - tamalibretro - vice: add x64dtv x64sc xcbm2 xscpu64 cores Co-authored-by: gouchi <gouchi@free.fr>
22 lines
704 B
Makefile
22 lines
704 B
Makefile
PKG_NAME="ardens"
|
|
PKG_VERSION="1e3231322494059e0979ceadff644aaf3a850921"
|
|
PKG_LICENSE="MIT"
|
|
PKG_SITE="https://github.com/tiberiusbrown/Ardens"
|
|
PKG_URL="${PKG_SITE}.git"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_LONGDESC="A simulator for the Arduboy FX that can be used for profiling and debugging."
|
|
PKG_TOOLCHAIN="cmake"
|
|
|
|
PKG_CMAKE_OPTS_TARGET="-DARDENS_LIBRETRO=on \
|
|
-DCMAKE_BUILD_TYPE=Release"
|
|
|
|
pre_make_target() {
|
|
find ${PKG_BUILD} -name flags.make -exec sed -i "s:isystem :I:g" \{} \;
|
|
find ${PKG_BUILD} -name build.ninja -exec sed -i "s:isystem :I:g" \{} \;
|
|
}
|
|
|
|
makeinstall_target() {
|
|
mkdir -p ${INSTALL}/usr/lib/libretro
|
|
cp -v ardens_libretro.so ${INSTALL}/usr/lib/libretro/
|
|
}
|