This commit is contained in:
TriForceX
2019-09-25 20:51:37 -03:00
commit 6203ff3e7c
11215 changed files with 428258 additions and 0 deletions

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

View File

@@ -0,0 +1,5 @@
# Hash from: http://ftp.gnome.org/pub/gnome/sources/gupnp-av/0.12/gupnp-av-0.12.11.sha256sum:
sha256 689dcf1492ab8991daea291365a32548a77d1a2294d85b33622b55cca9ce6fdc gupnp-av-0.12.11.tar.xz
# Hash for license file:
sha256 d245807f90032872d1438d741ed21e2490e1175dc8aa3afa5ddb6c8e529b58e5 COPYING

View File

@@ -0,0 +1,16 @@
################################################################################
#
# gupnp-av
#
################################################################################
GUPNP_AV_VERSION_MAJOR = 0.12
GUPNP_AV_VERSION = $(GUPNP_AV_VERSION_MAJOR).11
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.0+
GUPNP_AV_LICENSE_FILES = COPYING
GUPNP_AV_INSTALL_STAGING = YES
GUPNP_AV_DEPENDENCIES = host-pkgconf libglib2 libxml2 gupnp
$(eval $(autotools-package))