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>
20 lines
509 B
Makefile
20 lines
509 B
Makefile
GST_OMAPFB_VERSION=1.0
|
|
GST_OMAPFB_SOURCE=gst-omapfb-$(GST_OMAPFB_VERSION).tar.gz
|
|
GST_OMAPFB_SITE=http://gst-dsp.googlecode.com/files/
|
|
|
|
define GST_OMAPFB_BUILD_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) -e
|
|
endef
|
|
|
|
define GST_OMAPFB_INSTALL_TARGET_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) -e DESTDIR=$(TARGET_DIR) install
|
|
endef
|
|
|
|
define GST_OMAPFB_UNINSTALL_TARGET_CMDS
|
|
$(RM) $(TARGET_DIR)/usr/lib/gstreamer-0.10/libgstomapfb.so
|
|
endef
|
|
|
|
GST_OMAPFB_DEPENDENCIES = gstreamer
|
|
|
|
$(eval $(generic-package))
|