This commit is contained in:
TriForceX
2021-03-13 22:13:38 -03:00
parent c77595adbd
commit b3ecc6e32d
7043 changed files with 119377 additions and 73694 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 7ee4d5e4ec7d44fb9918ecb074ad7701eb0bcb3a840cee3c2924734ef3fd888a v2.6.11.tar.gz
sha256 17fb24bc303763f3fe1911ee24e5225c7ad59f0e3a5d8123e9b730c100a306a6 LICENSE

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

@@ -0,0 +1,19 @@
################################################################################
#
# vuejs
#
################################################################################
VUEJS_VERSION = 2.6.11
VUEJS_SOURCE = v$(VUEJS_VERSION).tar.gz
VUEJS_SITE = https://github.com/vuejs/vue/archive
VUEJS_LICENSE = MIT
VUEJS_LICENSE_FILES = LICENSE
# Install .min.js as .js
define VUEJS_INSTALL_TARGET_CMDS
$(INSTALL) -m 644 -D $(@D)/dist/vue.min.js \
$(TARGET_DIR)/var/www/vue.js
endef
$(eval $(generic-package))