d0937588f0
cpe:2.3🅰️jquery:jquery is a valid CPE identifier for this package: https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&keyword=cpe%3A2.3%3Aa%3Ajquery%3Ajquery Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
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))
|