mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
* add missing hashes & correct licenses * disable conventional license files for IPK pkgs + more fixes * libretro-database: bump libretro-database version (with existent License) * libretro-*: redirect to upstream links pointing to recalbox src
15 lines
629 B
Makefile
15 lines
629 B
Makefile
LIBRETRO_DATABASE_VERSION = f8100512f424873a549bb07ab7ff9f300fab8adf
|
|
LIBRETRO_DATABASE_SITE = $(call github,libretro,libretro-database,${LIBRETRO_DATABASE_VERSION})
|
|
LIBRETRO_DATABASE_LICENSE = CC-BY-SA-4.0
|
|
LIBRETRO_DATABASE_LICENSE_FILES = LICENSE
|
|
|
|
define LIBRETRO_DATABASE_INSTALL_TARGET_CMDS
|
|
mkdir -p "${BINARIES_DIR}/retroarch/cores"
|
|
mkdir -p "${BINARIES_DIR}/retroarch/cursors"
|
|
mkdir -p "${BINARIES_DIR}/retroarch/rdb"
|
|
$(INSTALL) -D -m 0644 $(@D)/cursors/* "${BINARIES_DIR}/retroarch/cursors/"
|
|
$(INSTALL) -D -m 0644 $(@D)/rdb/* "${BINARIES_DIR}/retroarch/rdb/"
|
|
endef
|
|
|
|
$(eval $(generic-package))
|