Signed-off-by: Peter Thompson <peter.macleod.thompson@gmail.com>
[Thomas:
- point <pkg>_LICENSE_FILES to a file that actually exists
- add host-pkgconf to the dependencies
- remove unneeded CONF_OPTS options
- pass FREETYPE_CONFIG in the environment to point to freetype-config]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
source "package/sdl2/Config.in"
source "package/sdl2_gfx/Config.in"
source "package/sdl2_image/Config.in"
+ source "package/sdl2_ttf/Config.in"
comment "Other GUIs"
source "package/qt/Config.in"
--- /dev/null
+config BR2_PACKAGE_SDL2_TTF
+ bool "SDL2_TTF"
+ depends on BR2_PACKAGE_SDL2
+ select BR2_PACKAGE_FREETYPE
+ help
+ SDL2_ttf is a sample TrueType font library. It allows you to
+ use TrueType fonts in your SDL2 applications.
+
+ http://www.libsdl.org/projects/SDL_ttf/
--- /dev/null
+# Locally calculated
+sha256 34db5e20bcf64e7071fe9ae25acaa7d72bdc4f11ab3ce59acc768ab62fe39276 SDL2_ttf-2.0.14.tar.gz
--- /dev/null
+################################################################################
+#
+# sdl2_ttf
+#
+################################################################################
+
+SDL2_TTF_VERSION = 2.0.14
+SDL2_TTF_SOURCE = SDL2_ttf-$(SDL2_TTF_VERSION).tar.gz
+SDL2_TTF_SITE = http://www.libsdl.org/projects/SDL_ttf/release
+SDL2_TTF_LICENSE = zlib
+SDL2_TTF_LICENSE_FILES = COPYING.txt
+SDL2_TTF_INSTALL_STAGING = YES
+SDL2_TTF_DEPENDENCIES = sdl2 freetype host-pkgconf
+SDL2_TTF_CONF_ENV = \
+ FREETYPE_CONFIG=$(STAGING_DIR)/usr/bin/freetype-config
+
+$(eval $(autotools-package))