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
+29
View File
@@ -0,0 +1,29 @@
################################################################################
#
# vte
#
################################################################################
VTE_VERSION = 0.48.3
VTE_SOURCE = vte-$(VTE_VERSION).tar.xz
VTE_SITE = http://ftp.gnome.org/pub/gnome/sources/vte/0.48
VTE_DEPENDENCIES = host-intltool host-pkgconf libgtk3 libxml2 pcre2
VTE_LICENSE = LGPL-2.1+
VTE_LICENSE_FILES = COPYING
VTE_CONF_OPTS += --disable-vala
ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
VTE_CONF_OPTS += --enable-introspection
VTE_DEPENDENCIES += gobject-introspection
else
VTE_CONF_OPTS += --disable-introspection
endif
ifeq ($(BR2_PACKAGE_GNUTLS),y)
VTE_CONF_OPTS += --with-gnutls
VTE_DEPENDENCIES += gnutls
else
VTE_CONF_OPTS += --without-gnutls
endif
$(eval $(autotools-package))