hc
2023-11-20 2e7bd41e4e8ab3d1efdabd9e263a2f7fe79bff8c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
################################################################################
#
# 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))