summaryrefslogtreecommitdiffstats
path: root/package/jquery/jquery.mk
blob: aba6301caeb0e422fb5aa2f50aa9cf429409334c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
JQUERY_VERSION = 1.7.1
JQUERY_SITE = http://code.jquery.com
JQUERY_SOURCE = jquery-$(JQUERY_VERSION).min.js

define JQUERY_EXTRACT_CMDS
	cp $(DL_DIR)/$(JQUERY_SOURCE) $(@D)
endef

define JQUERY_INSTALL_TARGET_CMDS
	$(INSTALL) -D $(@D)/$(JQUERY_SOURCE) $(TARGET_DIR)/var/www/jquery.js
endef

define JQUERY_UNINSTALL_TARGET_CMDS
	rm -f $(TARGET_DIR)/var/www/jquery.js
endef

$(eval $(call GENTARGETS))