Files
buildroot/package/miyoo/st-sdl/st-sdl.mk
Apaczer 779367ac07 PACKAGES: correct/add LICENSE_FILES (#110)
* 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
2024-10-21 18:14:35 +02:00

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))