[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

8
package/jquery/Config.in Normal file
View File

@ -0,0 +1,8 @@
config BR2_PACKAGE_JQUERY
bool "jQuery"
help
jQuery is a fast and concise JavaScript Library that
simplifies HTML document traversing, event handling,
animating, and Ajax interactions for rapid web development.
http://jquery.com

View File

@ -0,0 +1,2 @@
# Locally computed hashes, not provided by upstream
sha256 f7f6a5894f1d19ddad6fa392b2ece2c5e578cbf7da4ea805b6885eb6985b6e3d jquery-3.5.1.min.js

22
package/jquery/jquery.mk Normal file
View File

@ -0,0 +1,22 @@
################################################################################
#
# jquery
#
################################################################################
JQUERY_VERSION = 3.5.1
JQUERY_SITE = http://code.jquery.com
JQUERY_SOURCE = jquery-$(JQUERY_VERSION).min.js
JQUERY_LICENSE = MIT
JQUERY_CPE_ID_VENDOR = jquery
define JQUERY_EXTRACT_CMDS
cp $(JQUERY_DL_DIR)/$(JQUERY_SOURCE) $(@D)
endef
define JQUERY_INSTALL_TARGET_CMDS
$(INSTALL) -m 0644 -D $(@D)/$(JQUERY_SOURCE) \
$(TARGET_DIR)/var/www/jquery.js
endef
$(eval $(generic-package))