diff options
author | Rahul Bedarkar <rahul.bedarkar@imgtec.com> | 2015-09-15 13:34:41 +0530 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-09-16 22:52:32 +0200 |
commit | e3f69525b4d5a9fabbfff7f9d490bc20253fc966 (patch) | |
tree | 41bc52e25cf1834f5ef140151c51f10d5db56300 | |
parent | 3390492cd89e53e741b28dfce7ecc616cbd1fb16 (diff) | |
download | buildroot-e3f69525b4d5a9fabbfff7f9d490bc20253fc966.tar.gz buildroot-e3f69525b4d5a9fabbfff7f9d490bc20253fc966.zip |
gupnp-av: new package
GUPnP A/V reference manual https://developer.gnome.org/gupnp-av/
says latest available stable version is 0.11.2 but there are
couple of bug fixes releases after that in same series. It looks
like manual is not up-to-date. Use latest version 0.11.6
of series 0.11 instead.
Reviewed-by: Marcin Nowakowski <marcin.nowakowski@imgtec.com>
Signed-off-by: Abhimanyu Vishwakarma <Abhimanyu.Vishwakarma@imgtec.com>
Signed-off-by: Rahul Bedarkar <rahul.bedarkar@imgtec.com>
Reviewed-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Tested-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/Config.in | 1 | ||||
-rw-r--r-- | package/gupnp-av/Config.in | 17 | ||||
-rw-r--r-- | package/gupnp-av/gupnp-av.hash | 2 | ||||
-rw-r--r-- | package/gupnp-av/gupnp-av.mk | 16 |
4 files changed, 36 insertions, 0 deletions
diff --git a/package/Config.in b/package/Config.in index 1712bf1dec..e2f669a5dc 100644 --- a/package/Config.in +++ b/package/Config.in @@ -983,6 +983,7 @@ menu "Networking" source "package/glib-networking/Config.in" source "package/gssdp/Config.in" source "package/gupnp/Config.in" + source "package/gupnp-av/Config.in" source "package/ibrcommon/Config.in" source "package/ibrdtn/Config.in" source "package/libcgi/Config.in" diff --git a/package/gupnp-av/Config.in b/package/gupnp-av/Config.in new file mode 100644 index 0000000000..5320b82b5a --- /dev/null +++ b/package/gupnp-av/Config.in @@ -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 diff --git a/package/gupnp-av/gupnp-av.hash b/package/gupnp-av/gupnp-av.hash new file mode 100644 index 0000000000..0101ed4f5d --- /dev/null +++ b/package/gupnp-av/gupnp-av.hash @@ -0,0 +1,2 @@ +# Hash from: http://ftp.gnome.org/pub/gnome/sources/gupnp-av/0.11/gupnp-av-0.11.6.sha256sum: +sha256 401991336babb18c4ebed16e75e0b4d3e5848cff7bb878bbfd54a5d15203c4cc gupnp-av-0.11.6.tar.xz diff --git a/package/gupnp-av/gupnp-av.mk b/package/gupnp-av/gupnp-av.mk new file mode 100644 index 0000000000..6360c93ccc --- /dev/null +++ b/package/gupnp-av/gupnp-av.mk @@ -0,0 +1,16 @@ +################################################################################ +# +# gupnp-av +# +################################################################################ + +GUPNP_AV_VERSION_MAJOR = 0.11 +GUPNP_AV_VERSION = $(GUPNP_AV_VERSION_MAJOR).6 +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 = LGPLv2+ +GUPNP_AV_LICENSE_FILES = COPYING +GUPNP_AV_INSTALL_STAGING = YES +GUPNP_AV_DEPENDENCIES = host-pkgconf libglib2 libxml2 gupnp + +$(eval $(autotools-package)) |