[Mod] First commit

This commit is contained in:
2022-10-31 22:18:58 +08:00
commit 1c8a3d9709
13090 changed files with 526733 additions and 0 deletions

6
package/vuejs/Config.in Normal file
View File

@ -0,0 +1,6 @@
config BR2_PACKAGE_VUEJS
bool "vuejs"
help
VueJS web application framework.
http://vuejs.org

3
package/vuejs/vuejs.hash Normal file
View File

@ -0,0 +1,3 @@
# Locally computed
sha256 042033a2a8e6d45f750924953f03c34058d5afd9cc1571fbaf1827eaf04f6943 vue-3.2.33.tgz
sha256 1bb85cc9b13b81ef41c81c51866172fc345e0503c86726a6755b796590b70175 LICENSE

19
package/vuejs/vuejs.mk Normal file
View File

@ -0,0 +1,19 @@
################################################################################
#
# vuejs
#
################################################################################
VUEJS_VERSION = 3.2.33
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))