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
+17
View File
@@ -0,0 +1,17 @@
config BR2_PACKAGE_GUPNP_AV
bool "gupnp-av"
depends on BR2_USE_WCHAR # glib2, gupnp
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2, gupnp
depends on BR2_USE_MMU # glib2, gupnp
select BR2_PACKAGE_LIBGLIB2
select BR2_PACKAGE_GUPNP
select BR2_PACKAGE_LIBXML2
help
GUPnP-AV is a collection of helpers for building AV
(audio/video) applications using GUPnP.
http://www.gupnp.org/
comment "gupnp-av needs a toolchain w/ wchar, threads"
depends on BR2_USE_MMU
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
+5
View File
@@ -0,0 +1,5 @@
# Hash from: http://ftp.gnome.org/pub/gnome/sources/gupnp-av/0.13/gupnp-av-0.13.0.sha256sum:
sha256 578b8f562b0f7e908416a41efbe2b7e6b892cd2ed7eac61ac63c48fdc8d7e6c8 gupnp-av-0.13.0.tar.xz
# Hash for license file:
sha256 dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551 COPYING
+23
View File
@@ -0,0 +1,23 @@
################################################################################
#
# gupnp-av
#
################################################################################
GUPNP_AV_VERSION_MAJOR = 0.13
GUPNP_AV_VERSION = $(GUPNP_AV_VERSION_MAJOR).0
GUPNP_AV_SOURCE = gupnp-av-$(GUPNP_AV_VERSION).tar.xz
GUPNP_AV_SITE = http://ftp.gnome.org/pub/gnome/sources/gupnp-av/$(GUPNP_AV_VERSION_MAJOR)
GUPNP_AV_LICENSE = LGPL-2.1+
GUPNP_AV_LICENSE_FILES = COPYING
GUPNP_AV_INSTALL_STAGING = YES
GUPNP_AV_DEPENDENCIES = host-pkgconf libglib2 libxml2 gupnp
ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
GUPNP_AV_CONF_OPTS += -Dintrospection=true -Dvapi=true
GUPNP_AV_DEPENDENCIES += host-vala gobject-introspection
else
GUPNP_AV_CONF_OPTS += -Dintrospection=false -Dvapi=false
endif
$(eval $(meson-package))