mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-02 21:48:20 +03:00
Instead of DL_DIR, the package should now use $(PKG)_DL_DIR to ease the
transition into a new directory structure for DL_DIR.
This commit has been generated with the following scripts:
for i in $(find . -iname "*.mk"); do
if ! grep -q "\$(DL_DIR)" ${i}; then
continue
fi
pkg_name="$(basename $(dirname ${i}))"
[ "${pkg_name}" = "package" ] && continue
raw_pkg_name=$(echo ${pkg_name} | tr [a-z] [A-Z] | tr '-' '_')
pkg_dl_dir="${raw_pkg_name}_DL_DIR"
sed -i "s/\$(DL_DIR)/\$($pkg_dl_dir)/" ${i}
done
Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
22 lines
535 B
Makefile
22 lines
535 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 $(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))
|