0
0
mirror of https://github.com/libretro/Lakka-LibreELEC.git synced 2025-01-31 20:02:31 +00:00
Tomáš Kelemen (vudiq) ceee8b9e28 update libretro cores + retroarch
following cores were not updated and removed from build, as they fail to
build with old as well as updated:
- citra
- dolphin
- easyrpg
- mame
- mupen64plus_next
- pcsx2
- ppsspp
- same_cdi

build tested only for Generic.x86_64
2024-04-09 14:29:40 +02:00

22 lines
652 B
Makefile

PKG_NAME="hatari"
PKG_VERSION="a4c9eb0bb79e47a2870c12b04566c1f8d25e4bf3"
PKG_LICENSE="GPLv2"
PKG_SITE="https://github.com/libretro/hatari"
PKG_URL="${PKG_SITE}.git"
PKG_DEPENDS_TARGET="toolchain"
PKG_LONGDESC="New rebasing of Hatari based on Mercurial upstream. Tries to be a shallow fork for easy upstreaming later on."
PKG_TOOLCHAIN="make"
PKG_MAKE_OPTS_TARGET="-C ../ -f Makefile.libretro"
pre_make_target() {
if [ "${ARCH}" = "arm" ]; then
CFLAGS+=" -DNO_ASM -DARM -D__arm__ -DARM_ASM -DNOSSE -DARM_HARDFP"
fi
}
makeinstall_target() {
mkdir -p ${INSTALL}/usr/lib/libretro
cp -v ../hatari_libretro.so ${INSTALL}/usr/lib/libretro/
}