9265f1e8ac
Switch URL to HTTPS address for git repository. Signed-off-by: Ryan Barnett <ryanbarnett3@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
31 lines
805 B
Makefile
31 lines
805 B
Makefile
################################################################################
|
|
#
|
|
# opkg-utils
|
|
#
|
|
################################################################################
|
|
|
|
OPKG_UTILS_VERSION = 0.4.5
|
|
OPKG_UTILS_SITE = https://git.yoctoproject.org/git/opkg-utils
|
|
OPKG_UTILS_SITE_METHOD = git
|
|
OPKG_UTILS_LICENSE = GPL-2.0+
|
|
OPKG_UTILS_LICENSE_FILES = COPYING
|
|
|
|
HOST_OPKG_UTILS_DEPENDENCIES = \
|
|
$(BR2_PYTHON3_HOST_DEPENDENCY) \
|
|
host-diffutils \
|
|
host-lz4 \
|
|
host-xz
|
|
|
|
# Nothing to build; only scripts to install.
|
|
define OPKG_UTILS_INSTALL_CMDS
|
|
$(MAKE) -C $(@D) PREFIX=$(TARGET_DIR) install-utils
|
|
endef
|
|
|
|
# Nothing to build; only scripts to install.
|
|
define HOST_OPKG_UTILS_INSTALL_CMDS
|
|
$(MAKE) -C $(@D) PREFIX=$(HOST_DIR) install-utils
|
|
endef
|
|
|
|
$(eval $(generic-package))
|
|
$(eval $(host-generic-package))
|