mirror of
https://github.com/home-assistant/operating-system.git
synced 2025-11-15 21:59:27 +00:00
* 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)
23 lines
564 B
Makefile
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))
|