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
499 B
Makefile
19 lines
499 B
Makefile
EXPLORERCANVAS_VERSION = r3
|
|
EXPLORERCANVAS_SITE = http://explorercanvas.googlecode.com/files/
|
|
EXPLORERCANVAS_SOURCE = excanvas_$(EXPLORERCANVAS_VERSION).zip
|
|
|
|
define EXPLORERCANVAS_EXTRACT_CMDS
|
|
unzip -d $(@D) $(DL_DIR)/$(EXPLORERCANVAS_SOURCE)
|
|
endef
|
|
|
|
define EXPLORERCANVAS_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D $(@D)/excanvas.compiled.js \
|
|
$(TARGET_DIR)/var/www/excanvas.js
|
|
endef
|
|
|
|
define EXPLORERCANVAS_UNINSTALL_TARGET_CMDS
|
|
rm -f $(TARGET_DIR)/var/www/excanvas.js
|
|
endef
|
|
|
|
$(eval $(generic-package))
|