initial buildroot for linux 5.15

This commit is contained in:
Huan.Feng
2021-12-06 14:12:13 +08:00
parent d7767d594e
commit 7b6fc358fa
12736 changed files with 508822 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
config BR2_PACKAGE_SDL_TTF
bool "SDL_TTF"
depends on BR2_PACKAGE_SDL
select BR2_PACKAGE_FREETYPE
help
SDL_ttf is a sample TrueType font library. It allows you to
use TrueType fonts in your SDL applications.
http://www.libsdl.org/projects/SDL_ttf/
+3
View File
@@ -0,0 +1,3 @@
# Locally calculated
sha256 c24e3b48f5ffa5afb3256d23700506fad72117ac2834147c2e46ee94c3cb12b5 sdl_ttf-70b2940cc75e92aab02a67d2f827caf2836a2c74.tar.gz
sha256 b609721d3d4ac67facaf86f068c8b311b6c5f6cef89b6d84268aa38b7867ab7b COPYING
+25
View File
@@ -0,0 +1,25 @@
################################################################################
#
# sdl_ttf
#
################################################################################
# There is unlikely to be a new SDL_ttf release for the foreseeable future:
# https://bugzilla.libsdl.org/show_bug.cgi?id=5344#c1
SDL_TTF_VERSION = 70b2940cc75e92aab02a67d2f827caf2836a2c74
SDL_TTF_SITE = $(call github,libsdl-org,SDL_ttf,$(SDL_TTF_VERSION))
SDL_TTF_LICENSE = Zlib
SDL_TTF_LICENSE_FILES = COPYING
SDL_TTF_INSTALL_STAGING = YES
SDL_TTF_DEPENDENCIES = sdl freetype
SDL_TTF_CONF_OPTS = \
--without-x \
--with-freetype-prefix=$(STAGING_DIR)/usr \
--with-sdl-prefix=$(STAGING_DIR)/usr
SDL_TTF_MAKE_OPTS = \
INCLUDES="-I$(STAGING_DIR)/usr/include/SDL" \
LDFLAGS="-L$(STAGING_DIR)/usr/lib"
$(eval $(autotools-package))