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_ROUTER
bool "vuejs-router"
help
The official router for Vue.js.
http://router.vuejs.org
+3
View File
@@ -0,0 +1,3 @@
# Locally computed
sha256 317ae9b916b9a8c5ec521697c345bef15759887d63342ddf19c18ff05ca279b9 vue-router-4.0.11.tgz
sha256 9c0015250f592a09d7787efc07152afcf661fff6bda2554359f6d00987828c02 LICENSE
+19
View File
@@ -0,0 +1,19 @@
################################################################################
#
# vuejs-router
#
################################################################################
VUEJS_ROUTER_VERSION = 4.0.11
VUEJS_ROUTER_SOURCE = vue-router-$(VUEJS_ROUTER_VERSION).tgz
VUEJS_ROUTER_SITE = https://registry.npmjs.org/vue-router/-
VUEJS_ROUTER_LICENSE = MIT
VUEJS_ROUTER_LICENSE_FILES = LICENSE
# Install .prod.js as .js
define VUEJS_ROUTER_INSTALL_TARGET_CMDS
$(INSTALL) -m 644 -D $(@D)/dist/vue-router.global.prod.js \
$(TARGET_DIR)/var/www/vue-router.js
endef
$(eval $(generic-package))