514291f39e
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>
28 lines
877 B
Makefile
28 lines
877 B
Makefile
################################################################################
|
|
#
|
|
# angularjs
|
|
#
|
|
################################################################################
|
|
|
|
ANGULARJS_VERSION = 1.6.7
|
|
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))
|