mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-18 05:13:43 -09:00
Also add hash file. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
22 lines
528 B
Makefile
22 lines
528 B
Makefile
################################################################################
|
|
#
|
|
# jquery
|
|
#
|
|
################################################################################
|
|
|
|
JQUERY_VERSION = 1.11.2
|
|
JQUERY_SITE = http://code.jquery.com
|
|
JQUERY_SOURCE = jquery-$(JQUERY_VERSION).min.js
|
|
JQUERY_LICENSE = MIT
|
|
|
|
define JQUERY_EXTRACT_CMDS
|
|
cp $(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))
|