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

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))