mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-01 13:49:03 +03:00
Fixes the following security issue:
- CVE-2020-11022: Potential XSS vulnerability in jQuery
https://github.com/advisories/GHSA-gxr4-xjj5-5px2
Signed-off-by: Ignacy Gawędzki <ignacy.gawedzki@green-communications.fr>
[yann.morin.1998@free.fr: two spaces in hash file]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
(cherry picked from commit 4fc87ffb50)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
28 lines
877 B
Makefile
28 lines
877 B
Makefile
################################################################################
|
|
#
|
|
# angularjs
|
|
#
|
|
################################################################################
|
|
|
|
ANGULARJS_VERSION = 1.8.0
|
|
ANGULARJS_SOURCE = angular-$(ANGULARJS_VERSION).zip
|
|
ANGULARJS_SITE = https://code.angularjs.org/$(ANGULARJS_VERSION)
|
|
ANGULARJS_LICENSE = MIT
|
|
# There's no separate license file in the archive, so use angular.js instead.
|
|
ANGULARJS_LICENSE_FILES = angular.js
|
|
|
|
define ANGULARJS_EXTRACT_CMDS
|
|
unzip $(ANGULARJS_DL_DIR)/$(ANGULARJS_SOURCE) -d $(@D)
|
|
mv $(@D)/angular-$(ANGULARJS_VERSION)/* $(@D)
|
|
rmdir $(@D)/angular-$(ANGULARJS_VERSION)
|
|
endef
|
|
|
|
# install .min.js as .js
|
|
define ANGULARJS_INSTALL_TARGET_CMDS
|
|
$(foreach f,$(notdir $(wildcard $(@D)/*.min.js)),
|
|
$(INSTALL) -m 0644 -D $(@D)/$(f) \
|
|
$(TARGET_DIR)/var/www/$(f:.min.js=.js)$(sep))
|
|
endef
|
|
|
|
$(eval $(generic-package))
|