kumquat-buildroot/package/vuejs/vuejs.mk
Thomas Claveirole 9955ab9a09 package/vuejs: bump version to 3.2.6
Also correct the comment about installing the minified js file, which
was changed with the update to 3.0.5 in commit 42bf38dca.

Signed-off-by: Thomas Claveirole <thomas.claveirole@green-communications.fr>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2021-09-11 16:19:58 +02:00

20 lines
512 B
Makefile

################################################################################
#
# vuejs
#
################################################################################
VUEJS_VERSION = 3.2.6
VUEJS_SOURCE = vue-$(VUEJS_VERSION).tgz
VUEJS_SITE = https://registry.npmjs.org/vue/-
VUEJS_LICENSE = MIT
VUEJS_LICENSE_FILES = LICENSE
# Install .prod.js as .js
define VUEJS_INSTALL_TARGET_CMDS
$(INSTALL) -m 644 -D $(@D)/dist/vue.global.prod.js \
$(TARGET_DIR)/var/www/vue.js
endef
$(eval $(generic-package))