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
+24
View File
@@ -0,0 +1,24 @@
config BR2_PACKAGE_LIBERATION
bool "Liberation (Free fonts)"
help
The Liberation Fonts are intended to be replacements for the
three most commonly used fonts on Microsoft systems:
Times New Roman, Arial, and Courier New.
https://github.com/liberationfonts/liberation-fonts
if BR2_PACKAGE_LIBERATION
config BR2_PACKAGE_LIBERATION_MONO
bool "mono fonts"
default y
config BR2_PACKAGE_LIBERATION_SANS
bool "sans fonts"
default y
config BR2_PACKAGE_LIBERATION_SERIF
bool "serif fonts"
default y
endif
+3
View File
@@ -0,0 +1,3 @@
# Locally calculated
sha256 7191c669bf38899f73a2094ed00f7b800553364f90e2637010a69c0e268f25d0 liberation-fonts-ttf-2.1.5.tar.gz
sha256 93fed46019c38bbe566b479d22148e2e8a1e85ada614accb0211c37b2c61c19b LICENSE
+39
View File
@@ -0,0 +1,39 @@
################################################################################
#
# liberation
#
################################################################################
LIBERATION_VERSION = 2.1.5
LIBERATION_SITE = https://github.com/liberationfonts/liberation-fonts/files/7261482
LIBERATION_SOURCE = liberation-fonts-ttf-$(LIBERATION_VERSION).tar.gz
LIBERATION_TARGET_DIR = $(TARGET_DIR)/usr/share/fonts/liberation
LIBERATION_LICENSE = OFL-1.1
LIBERATION_LICENSE_FILES = LICENSE
ifeq ($(BR2_PACKAGE_LIBERATION_MONO),y)
define LIBERATION_INSTALL_MONO
$(INSTALL) -m 644 $(@D)/LiberationMono*.ttf $(LIBERATION_TARGET_DIR)
endef
endif
ifeq ($(BR2_PACKAGE_LIBERATION_SANS),y)
define LIBERATION_INSTALL_SANS
$(INSTALL) -m 644 $(@D)/LiberationSans*.ttf $(LIBERATION_TARGET_DIR)
endef
endif
ifeq ($(BR2_PACKAGE_LIBERATION_SERIF),y)
define LIBERATION_INSTALL_SERIF
$(INSTALL) -m 644 $(@D)/LiberationSerif*.ttf $(LIBERATION_TARGET_DIR)
endef
endif
define LIBERATION_INSTALL_TARGET_CMDS
mkdir -p $(LIBERATION_TARGET_DIR)
$(LIBERATION_INSTALL_MONO)
$(LIBERATION_INSTALL_SANS)
$(LIBERATION_INSTALL_SERIF)
endef
$(eval $(generic-package))