Files
operating-system/buildroot/package/jquery/jquery.mk
Stefan Agner f358f322da Bump Buildroot to 2021.02-rc3 (#1260)
* Rebase patches to Buildroot 2021.02-rc3

* Update Buildroot to 2021.02-rc3

* Declare Kernel headers to be Linux version 5.10 (since they are, and new Buildroot knows about 5.10)
2021-03-04 00:50:33 +01:00

23 lines
564 B
Makefile

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