1
1
mirror of https://github.com/OpenVoiceOS/OpenVoiceOS synced 2025-06-05 22:19:21 +02:00

MycroftOS: Add python-lazy requirement

This commit is contained in:
Peter Steenbergen
2019-09-08 17:28:50 +02:00
parent bfcaa9a189
commit eb91fa52b2
3 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,20 @@
################################################################################
#
# python-lazy
#
################################################################################
PYTHON_LAZY_VERSION = 1.4
PYTHON_LAZY_SOURCE = lazy-$(PYTHON_LAZY_VERSION).zip
PYTHON_LAZY_SITE = https://files.pythonhosted.org/packages/ce/10/2c0cd8a601fff792f814b89233859e3fce2e266a5defd8af3bcadbe5c7ef
PYTHON_LAZY_SETUP_TYPE = setuptools
PYTHON_LAZY_LICENSE = BSD-2-Clause
PYTHON_LAZY_LICENSE_FILES = LICENSE
define PYTHON_LAZY_EXTRACT_CMDS
$(UNZIP) -d $(@D) $(DL_DIR)/python-lazy/$(PYTHON_LAZY_SOURCE)
mv $(@D)/lazy-$(PYTHON_LAZY_VERSION)/* $(@D)
$(RM) -r $(@D)/lazy-$(PYTHON_LAZY_VERSION)
endef
$(eval $(python-package))