7ca94a367d
Note: even though the Chart.js developers make specific tarballs on GitHub (i.e. not simply 'source code' tarballs), they cannot be used in Buildroot because their names do not encode a version number, e.g. 'Chart.js.zip'. This means that on upgrades, the same tarball name would have different contents and thus a different hash. Signed-off-by: Joeri Barbarien <joeri.barbarien@nokia.com> Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
22 lines
691 B
Makefile
22 lines
691 B
Makefile
################################################################################
|
|
#
|
|
# chartjs
|
|
#
|
|
################################################################################
|
|
|
|
CHARTJS_VERSION = v2.9.3
|
|
CHARTJS_SITE = $(call github,chartjs,Chart.js,$(CHARTJS_VERSION))
|
|
CHARTJS_LICENSE = MIT
|
|
CHARTJS_LICENSE_FILES = LICENSE.md
|
|
|
|
define CHARTJS_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -m 0644 -D $(@D)/dist/Chart.min.css \
|
|
$(TARGET_DIR)/var/www/chartjs/css/Chart.css
|
|
$(INSTALL) -m 0644 -D $(@D)/dist/Chart.min.js \
|
|
$(TARGET_DIR)/var/www/chartjs/js/Chart.js
|
|
$(INSTALL) -m 0644 -D $(@D)/dist/Chart.bundle.min.js \
|
|
$(TARGET_DIR)/var/www/chartjs/js/Chart.bundle.js
|
|
endef
|
|
|
|
$(eval $(generic-package))
|