adf6511013
Unless it was a group of sub-packages, packages was never regrouped by category. multimedia/ was an exception to this rule. This patch move packages/multimedia/ sub-directories to packages/. It keeps two subdirectories for gstream 0.10 and gstreamer 1.X. Signed-off-by: Jérôme Pouiller <jezz@sysmic.org> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
38 lines
998 B
Makefile
38 lines
998 B
Makefile
################################################################################
|
|
#
|
|
# gst-omx
|
|
#
|
|
################################################################################
|
|
|
|
GST_OMX_VERSION = 1.0.0
|
|
GST_OMX_SOURCE = gst-omx-$(GST_OMX_VERSION).tar.xz
|
|
GST_OMX_SITE = http://gstreamer.freedesktop.org/src/gst-omx/
|
|
|
|
GST_OMX_LICENSE = LGPLv2.1
|
|
GST_OMX_LICENSE_FILES = COPYING
|
|
|
|
ifeq ($(BR2_PACKAGE_RPI_USERLAND),y)
|
|
GST_OMX_CONF_OPT = \
|
|
--with-omx-target=rpi
|
|
GST_OMX_CONF_ENV = \
|
|
CFLAGS="$(TARGET_CFLAGS) \
|
|
-I$(STAGING_DIR)/usr/include/IL \
|
|
-I$(STAGING_DIR)/usr/include/interface/vcos/pthreads \
|
|
-I$(STAGING_DIR)/usr/include/interface/vmcs_host/linux"
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_BELLAGIO),y)
|
|
GST_OMX_CONF_OPT = \
|
|
--with-omx-target=bellagio
|
|
GST_OMX_CONF_ENV = \
|
|
CFLAGS="$(TARGET_CFLAGS) \
|
|
-DOMX_VERSION_MAJOR=1 \
|
|
-DOMX_VERSION_MINOR=1 \
|
|
-DOMX_VERSION_REVISION=2 \
|
|
-DOMX_VERSION_STEP=0"
|
|
endif
|
|
|
|
GST_OMX_DEPENDENCIES = gstreamer1 gst1-plugins-base libopenmax
|
|
|
|
$(eval $(autotools-package))
|