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>
22 lines
670 B
Makefile
22 lines
670 B
Makefile
################################################################################
|
|
#
|
|
# imx-vpuwrap
|
|
#
|
|
################################################################################
|
|
|
|
IMX_VPUWRAP_VERSION = 1.0.68
|
|
IMX_VPUWRAP_SITE = $(FREESCALE_IMX_SITE)
|
|
IMX_VPUWRAP_SOURCE = imx-vpuwrap-$(IMX_VPUWRAP_VERSION).bin
|
|
IMX_VPUWRAP_DEPENDENCIES = imx-vpu
|
|
IMX_VPUWRAP_INSTALL_STAGING = YES
|
|
|
|
IMX_VPUWRAP_LICENSE = NXP Semiconductor Software License Agreement
|
|
IMX_VPUWRAP_LICENSE_FILES = EULA COPYING
|
|
IMX_VPUWRAP_REDISTRIBUTE = NO
|
|
|
|
define IMX_VPUWRAP_EXTRACT_CMDS
|
|
$(call FREESCALE_IMX_EXTRACT_HELPER,$(IMX_VPUWRAP_DL_DIR)/$(IMX_VPUWRAP_SOURCE))
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|