mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-04-11 22:59:36 +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>
31 lines
779 B
Makefile
31 lines
779 B
Makefile
PKG_NAME="picodrive"
|
|
PKG_VERSION="45457406f7e0673084bfc7c8de8c8a86db843f2d"
|
|
PKG_LICENSE="MAME"
|
|
PKG_SITE="https://github.com/irixxxx/picodrive"
|
|
PKG_URL="${PKG_SITE}.git"
|
|
PKG_DEPENDS_TARGET="toolchain ${PKG_NAME}:host"
|
|
PKG_DEPENDS_HOST="toolchain:host"
|
|
PKG_LONGDESC="Libretro implementation of PicoDrive. (Sega Megadrive/Genesis/Sega Master System/Sega GameGear/Sega CD/32X)"
|
|
PKG_TOOLCHAIN="make"
|
|
|
|
PKG_MAKE_OPTS_TARGET="-f Makefile.libretro -C ../"
|
|
|
|
make_host() {
|
|
if [ "${ARCH}" != "x86_64" ]; then
|
|
make -C ../cpu/cyclone CONFIG_FILE=../cyclone_config.h
|
|
fi
|
|
}
|
|
|
|
makeinstall_host() {
|
|
: # nothing to do
|
|
}
|
|
|
|
pre_make_target() {
|
|
CFLAGS+=" -I./"
|
|
}
|
|
|
|
makeinstall_target() {
|
|
mkdir -p ${INSTALL}/usr/lib/libretro
|
|
cp -v ../picodrive_libretro.so ${INSTALL}/usr/lib/libretro/
|
|
}
|