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

20
package/gupnp/Config.in Normal file
View File

@@ -0,0 +1,20 @@
config BR2_PACKAGE_GUPNP
bool "gupnp"
depends on BR2_USE_WCHAR # glib2, gssdp
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2, gssdp
depends on BR2_USE_MMU # glib2, gssdp
select BR2_PACKAGE_LIBGLIB2
select BR2_PACKAGE_GSSDP
select BR2_PACKAGE_LIBXML2
select BR2_PACKAGE_UTIL_LINUX
select BR2_PACKAGE_UTIL_LINUX_LIBUUID
help
GUPnP implements the UPnP specification: resource announcement
and discovery, description, control, event notification, and
presentation.
http://www.gupnp.org/
comment "gupnp needs a toolchain w/ wchar, threads"
depends on BR2_USE_MMU
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS

5
package/gupnp/gupnp.hash Normal file
View File

@@ -0,0 +1,5 @@
# Hash from: http://ftp.gnome.org/pub/gnome/sources/gupnp/1.0/gupnp-1.0.4.sha256sum:
sha256 8b0992650c6ef8566d2d0c9198c8a669106dc2c73aa908fcc4a4d043a8c0b544 gupnp-1.0.4.tar.xz
# Hash for license file:
sha256 d245807f90032872d1438d741ed21e2490e1175dc8aa3afa5ddb6c8e529b58e5 COPYING

16
package/gupnp/gupnp.mk Normal file
View File

@@ -0,0 +1,16 @@
################################################################################
#
# gupnp
#
################################################################################
GUPNP_VERSION_MAJOR = 1.0
GUPNP_VERSION = $(GUPNP_VERSION_MAJOR).4
GUPNP_SOURCE = gupnp-$(GUPNP_VERSION).tar.xz
GUPNP_SITE = http://ftp.gnome.org/pub/gnome/sources/gupnp/$(GUPNP_VERSION_MAJOR)
GUPNP_LICENSE = LGPL-2.0+
GUPNP_LICENSE_FILES = COPYING
GUPNP_INSTALL_STAGING = YES
GUPNP_DEPENDENCIES = host-pkgconf libglib2 libxml2 gssdp util-linux
$(eval $(autotools-package))