ea86ea99a6
Fixes #10631 The gstreamer plugins were recently bumped to 1.12.4, but the main gstreamer1 package not. Fix that. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
35 lines
1.1 KiB
Makefile
35 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# gstreamer1
|
|
#
|
|
################################################################################
|
|
|
|
GSTREAMER1_VERSION = 1.12.4
|
|
GSTREAMER1_SOURCE = gstreamer-$(GSTREAMER1_VERSION).tar.xz
|
|
GSTREAMER1_SITE = https://gstreamer.freedesktop.org/src/gstreamer
|
|
GSTREAMER1_INSTALL_STAGING = YES
|
|
GSTREAMER1_LICENSE_FILES = COPYING
|
|
GSTREAMER1_LICENSE = LGPL-2.0+, LGPL-2.1+
|
|
|
|
GSTREAMER1_CONF_OPTS = \
|
|
--disable-examples \
|
|
--disable-tests \
|
|
--disable-failing-tests \
|
|
--disable-valgrind \
|
|
--disable-benchmarks \
|
|
$(if $(BR2_PACKAGE_GSTREAMER1_CHECK),,--disable-check) \
|
|
$(if $(BR2_PACKAGE_GSTREAMER1_TRACE),,--disable-trace) \
|
|
$(if $(BR2_PACKAGE_GSTREAMER1_PARSE),,--disable-parse) \
|
|
$(if $(BR2_PACKAGE_GSTREAMER1_GST_DEBUG),,--disable-gst-debug) \
|
|
$(if $(BR2_PACKAGE_GSTREAMER1_PLUGIN_REGISTRY),,--disable-registry) \
|
|
$(if $(BR2_PACKAGE_GSTREAMER1_INSTALL_TOOLS),,--disable-tools)
|
|
|
|
GSTREAMER1_DEPENDENCIES = \
|
|
host-bison \
|
|
host-flex \
|
|
host-pkgconf \
|
|
libglib2 \
|
|
$(if $(BR2_PACKAGE_LIBUNWIND),libunwind)
|
|
|
|
$(eval $(autotools-package))
|