mirror of
https://github.com/home-assistant/operating-system.git
synced 2025-11-16 14:19:26 +00:00
* Rebase patches to Buildroot 2021.02-rc3 * Update Buildroot to 2021.02-rc3 * Declare Kernel headers to be Linux version 5.10 (since they are, and new Buildroot knows about 5.10)
19 lines
481 B
Makefile
19 lines
481 B
Makefile
################################################################################
|
|
#
|
|
# vuejs
|
|
#
|
|
################################################################################
|
|
|
|
VUEJS_VERSION = 3.0.5
|
|
VUEJS_SOURCE = vue-$(VUEJS_VERSION).tgz
|
|
VUEJS_SITE = https://registry.npmjs.org/vue/-
|
|
VUEJS_LICENSE = MIT
|
|
|
|
# Install .min.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))
|