initial buildroot for linux 5.15

This commit is contained in:
Huan.Feng
2021-12-06 14:12:13 +08:00
parent d7767d594e
commit 7b6fc358fa
12736 changed files with 508822 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
config BR2_PACKAGE_VUEJS
bool "vuejs"
help
VueJS web application framework.
http://vuejs.org
+3
View File
@@ -0,0 +1,3 @@
# Locally computed
sha256 464ea5fdbcb51eee0b5f4762f169024b36a3bcd2c039ea8608b17fdd8a8595e9 vue-3.2.6.tgz
sha256 1bb85cc9b13b81ef41c81c51866172fc345e0503c86726a6755b796590b70175 LICENSE
+19
View File
@@ -0,0 +1,19 @@
################################################################################
#
# 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))