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
23 lines
618 B
Makefile
23 lines
618 B
Makefile
################################################################################
|
|
#
|
|
# SDL simple terminal
|
|
#
|
|
################################################################################
|
|
|
|
ST_SDL_VERSION = rev.2.1
|
|
ST_SDL_SITE_METHOD = git
|
|
ST_SDL_SITE = https://github.com/Apaczer/miyoo_st-sdl
|
|
ST_SDL_LICENSE = MIT
|
|
ST_SDL_LICENSE_FILES = LICENSE
|
|
ST_SDL_DEPENDENCIES = sdl
|
|
|
|
define ST_SDL_BUILD_CMDS
|
|
$(MAKE) CC="$(TARGET_CC)" CXX="$(TARGET_CXX)" LD="$(TARGET_LD)" -C $(@D) -f Makefile.miyoo
|
|
endef
|
|
|
|
define ST_SDL_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/st $(TARGET_DIR)/usr/bin
|
|
endef
|
|
|
|
$(eval $(generic-package))
|