c7f4b96471
Since the trailing slash is stripped from $($(PKG)_SITE) by pkg-generic.mk: $(call DOWNLOAD,$($(PKG)_SITE:/=)/$($(PKG)_SOURCE)) so it is redundant. This patch removes it from $(PKG)_SITE variable for BR consistency. Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
23 lines
665 B
Makefile
23 lines
665 B
Makefile
################################################################################
|
|
#
|
|
# explorercanvas
|
|
#
|
|
################################################################################
|
|
|
|
EXPLORERCANVAS_VERSION = r3
|
|
EXPLORERCANVAS_SITE = http://explorercanvas.googlecode.com/files
|
|
EXPLORERCANVAS_SOURCE = excanvas_$(EXPLORERCANVAS_VERSION).zip
|
|
EXPLORERCANVAS_LICENSE = Apache-2.0
|
|
EXPLORERCANVAS_LICENSE_FILES = COPYING
|
|
|
|
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
|
|
|
|
$(eval $(generic-package))
|