[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

View File

@ -0,0 +1,9 @@
config BR2_PACKAGE_JQUERY_UI
bool "jquery-ui"
help
jQuery UI provides abstractions for low-level interaction and
animation, advanced effects and high-level, themeable widgets,
built on top of the jQuery JavaScript Library, that you can
use to build highly interactive web applications.
http://jqueryui.com/

View File

@ -0,0 +1,3 @@
# locally computed
sha256 c76f349930245360f4d1dea672b9a587f8938b536a378e20eeff919f7263f99f jquery-ui-1.10.4.zip
sha256 ef1fdd608b20fbea7ef269ed03bd24e637717cc193971798a394bf2fa983cd53 MIT-LICENSE.txt

View File

@ -0,0 +1,34 @@
################################################################################
#
# jquery-ui
#
################################################################################
JQUERY_UI_VERSION = 1.10.4
# Use buildroot mirror since upstream switched the zipfile and directory
# structure without bumping/renaming.
# Remember to switch back to jqueryui.com when bumping!
JQUERY_UI_SITE = http://sources.buildroot.net
JQUERY_UI_SOURCE = jquery-ui-$(JQUERY_UI_VERSION).zip
JQUERY_UI_LICENSE = MIT
JQUERY_UI_LICENSE_FILES = MIT-LICENSE.txt
define JQUERY_UI_EXTRACT_CMDS
$(UNZIP) -d $(@D) $(JQUERY_UI_DL_DIR)/$(JQUERY_UI_SOURCE)
mv $(@D)/jquery-ui-$(JQUERY_UI_VERSION)/* $(@D)
$(RM) -r $(@D)/jquery-ui-$(JQUERY_UI_VERSION)
endef
define JQUERY_UI_INSTALL_TARGET_CMDS
$(INSTALL) -m 0644 -D $(@D)/ui/minified/jquery-ui.min.js \
$(TARGET_DIR)/var/www/jquery-ui.js
$(INSTALL) -m 0644 -D $(@D)/ui/minified/i18n/jquery-ui-i18n.min.js \
$(TARGET_DIR)/var/www/jquery-ui-i18n.js
$(INSTALL) -m 0644 -D $(@D)/themes/base/minified/jquery-ui.min.css \
$(TARGET_DIR)/var/www/jquery-ui.css
$(INSTALL) -d $(TARGET_DIR)/var/www/images
$(INSTALL) -m 0644 -t $(TARGET_DIR)/var/www/images \
$(@D)/themes/base/minified/images/*.png
endef
$(eval $(generic-package))