e1502ebc0c
Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
19 lines
550 B
Makefile
19 lines
550 B
Makefile
#############################################################
|
|
#
|
|
# gst-ffmpeg
|
|
#
|
|
#############################################################
|
|
|
|
GST_FFMPEG_VERSION = 0.10.13
|
|
GST_FFMPEG_SOURCE = gst-ffmpeg-$(GST_FFMPEG_VERSION).tar.bz2
|
|
GST_FFMPEG_SITE = http://gstreamer.freedesktop.org/src/gst-ffmpeg
|
|
GST_FFMPEG_INSTALL_STAGING = YES
|
|
GST_FFMPEG_DEPENDENCIES = host-pkg-config gstreamer gst-plugins-base ffmpeg
|
|
GST_FFMPEG_CONF_OPT = --with-system-ffmpeg
|
|
|
|
ifeq ($(BR2_PACKAGE_BZIP2),y)
|
|
GST_FFMPEG_DEPENDENCIES += bzip2
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|