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
27 lines
663 B
Makefile
27 lines
663 B
Makefile
################################################################################
|
|
#
|
|
# SDLbook
|
|
#
|
|
################################################################################
|
|
|
|
SDLBOOK_VERSION = d0c4df8edf8df4f96312641ebf4d25d5b0b042fe
|
|
SDLBOOK_SITE_METHOD = git
|
|
SDLBOOK_SITE = https://github.com/rofl0r/SDLBook
|
|
SDLBOOK_LICENSE = GPL-3.0
|
|
SDLBOOK_LICENSE_FILES = COPYING
|
|
SDLBOOK_DEPENDENCIES = \
|
|
sdl \
|
|
djvu \
|
|
mupdf \
|
|
tiff
|
|
|
|
define SDLBOOK_BUILD_CMDS
|
|
$(MAKE) CC="$(TARGET_CC)" CFLAGS="-DMIYOO -Ofast -DRENDER_ONEPAGE" -C $(@D)
|
|
endef
|
|
|
|
define SDLBOOK_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/sdlbook $(TARGET_DIR)/usr/bin
|
|
endef
|
|
|
|
$(eval $(generic-package))
|