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
+8
View File
@@ -0,0 +1,8 @@
config BR2_PACKAGE_TERMINOLOGY
bool "terminology"
depends on BR2_PACKAGE_EFL
help
Terminology is an EFL terminal emulator with some extra
bells and whistles.
https://www.enlightenment.org/about-terminology
+3
View File
@@ -0,0 +1,3 @@
# From https://download.enlightenment.org/rel/apps/terminology/terminology-1.9.0.tar.xz.sha256sum
sha256 3f3bc327da5cc239d468570afed29a17e2fda3b1fee02b28f02ee7ed5141e46c terminology-1.9.0.tar.xz
sha256 6863ee700fc82b9c3b82a1627136f6935a9eb68e6a64491f20e00b4023c33622 COPYING
+25
View File
@@ -0,0 +1,25 @@
################################################################################
#
# terminology
#
################################################################################
TERMINOLOGY_VERSION = 1.9.0
TERMINOLOGY_SOURCE = terminology-$(TERMINOLOGY_VERSION).tar.xz
TERMINOLOGY_SITE = https://download.enlightenment.org/rel/apps/terminology
TERMINOLOGY_LICENSE = BSD-2-Clause
TERMINOLOGY_LICENSE_FILES = COPYING
TERMINOLOGY_CPE_ID_VENDOR = enlightenment
TERMINOLOGY_DEPENDENCIES = $(TARGET_NLS_DEPENDENCIES) efl host-pkgconf
TERMINOLOGY_CONF_OPTS = \
-Dedje-cc=$(HOST_DIR)/bin/edje_cc \
-Deet=$(HOST_DIR)/bin/eet
ifeq ($(BR2_SYSTEM_ENABLE_NLS),y)
TERMINOLOGY_CONF_OPTS += -Dnls=true
else
TERMINOLOGY_CONF_OPTS += -Dnls=false
endif
$(eval $(meson-package))