sdl2_ttf: new package
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>
This commit is contained in:
parent
f2ffe91eab
commit
a0abce838b
@ -265,6 +265,7 @@ comment "Graphic libraries"
|
||||
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"
|
||||
|
9
package/sdl2_ttf/Config.in
Normal file
9
package/sdl2_ttf/Config.in
Normal file
@ -0,0 +1,9 @@
|
||||
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/
|
2
package/sdl2_ttf/sdl2_ttf.hash
Normal file
2
package/sdl2_ttf/sdl2_ttf.hash
Normal file
@ -0,0 +1,2 @@
|
||||
# Locally calculated
|
||||
sha256 34db5e20bcf64e7071fe9ae25acaa7d72bdc4f11ab3ce59acc768ab62fe39276 SDL2_ttf-2.0.14.tar.gz
|
17
package/sdl2_ttf/sdl2_ttf.mk
Normal file
17
package/sdl2_ttf/sdl2_ttf.mk
Normal file
@ -0,0 +1,17 @@
|
||||
################################################################################
|
||||
#
|
||||
# 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))
|
Loading…
Reference in New Issue
Block a user