300f9c9c9d
Thanks to the pkgparentdir and pkgname functions, we can rewrite the AUTOTARGETS macro in a way that avoids the need for each package to repeat its name and the directory in which it is present. [Peter: pkgdir->pkgparentdir] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
29 lines
847 B
Makefile
29 lines
847 B
Makefile
|
|
#############################################################
|
|
#
|
|
# gstreamer
|
|
#
|
|
#############################################################
|
|
GSTREAMER_VERSION = 0.10.35
|
|
GSTREAMER_SOURCE = gstreamer-$(GSTREAMER_VERSION).tar.bz2
|
|
GSTREAMER_SITE = http://gstreamer.freedesktop.org/src/gstreamer
|
|
GSTREAMER_INSTALL_STAGING = YES
|
|
|
|
# Checking if unaligned memory access works correctly cannot be done when cross
|
|
# compiling. For the following architectures there is no information available
|
|
# in the configure script.
|
|
ifeq ($(BR2_avr32),y)
|
|
GSTREAMER_CONF_ENV = as_cv_unaligned_access=no
|
|
endif
|
|
|
|
GSTREAMER_CONF_OPT = \
|
|
--disable-examples \
|
|
--disable-tests \
|
|
--disable-failing-tests \
|
|
--disable-loadsave \
|
|
$(if $(BR2_PACKAGE_GSTREAMER_GST_DEBUG),,--disable-gst-debug)
|
|
|
|
GSTREAMER_DEPENDENCIES = libglib2 host-pkg-config
|
|
|
|
$(eval $(call AUTOTARGETS))
|