mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
* Add retroarch package * libretro cores as separate packages * Add libretro-super package * Add core resources, move retroarch bin to /mnt/emus/retroarch dir * add NxEngine assets + correct indendt * [BOARD] add cores appLinks * [GENIMAGE] test -d before running cp to not stderr * [BOARD] add "cores" section in gmenu2x with all appLinks * add PRBOOM data *.wad file * [GENIMAGE] generate cores' script links in genimage.sh * Add scummvm core & downgrade * [GENIMAGE] don't run cores in verbose * resort `core links` and update their icons --------- Co-authored-by: Apaczer <94932128+Apaczer@users.noreply.github.com>
11 lines
421 B
Makefile
11 lines
421 B
Makefile
LIBRETRO_CORE_INFO_VERSION = 1.16.0.3
|
|
LIBRETRO_CORE_INFO_SITE = $(call github,libretro,libretro-core-info,v${LIBRETRO_CORE_INFO_VERSION})
|
|
LIBRETRO_CORE_INFO_LICENSE = GPL-3.0
|
|
LIBRETRO_CORE_INFO_LICENSE_FILES = COPYING
|
|
|
|
define LIBRETRO_CORE_INFO_INSTALL_TARGET_CMDS
|
|
mkdir -p "${BINARIES_DIR}/retroarch/core_info"
|
|
$(INSTALL) -D -m 0644 $(@D)/*.info "${BINARIES_DIR}/retroarch/core_info"
|
|
endef
|
|
|
|
$(eval $(generic-package)) |