0
0
mirror of https://github.com/libretro/Lakka-LibreELEC.git synced 2025-04-22 21:55:52 +00:00
Files
Tomáš Kelemen 4606c63ffd update libretro/retroarch (#2036)
- 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>
2025-02-14 09:59:55 +01:00

21 lines
553 B
Makefile

PKG_NAME="vice"
PKG_VERSION="67b18766e5911ed413ee999aefebc224adb6956a"
PKG_LICENSE="GPLv2"
PKG_SITE="https://github.com/libretro/vice-libretro"
PKG_URL="${PKG_SITE}.git"
PKG_DEPENDS_TARGET="toolchain"
PKG_LONGDESC="Versatile Commodore 8-bit Emulator version"
PKG_TOOLCHAIN="manual"
make_target() {
for LRCORE in x64 x128 xpet xplus4 xvic x64dtv x64sc xcbm2 xscpu64 ; do
make EMUTYPE=${LRCORE}
make objectclean
done
}
makeinstall_target() {
mkdir -p ${INSTALL}/usr/lib/libretro
cp -v vice_*_libretro.so ${INSTALL}/usr/lib/libretro/
}