8db775229b
Signed-off-by: Adam Duskett <aduskett@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
24 lines
819 B
Makefile
24 lines
819 B
Makefile
################################################################################
|
|
#
|
|
# python-txtorcon
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_TXTORCON_VERSION = 21.1.0
|
|
PYTHON_TXTORCON_SOURCE = txtorcon-$(PYTHON_TXTORCON_VERSION).tar.gz
|
|
PYTHON_TXTORCON_SITE = https://files.pythonhosted.org/packages/eb/43/2426009377cef519c53bdc8969590cb100e9fd745846859963c881c6d176
|
|
PYTHON_TXTORCON_SETUP_TYPE = setuptools
|
|
PYTHON_TXTORCON_LICENSE = MIT
|
|
PYTHON_TXTORCON_LICENSE_FILES = LICENSE
|
|
|
|
ifeq ($(BR2_PACKAGE_PYTHON),y)
|
|
# only needed/valid for python 3.x
|
|
define PYTHON_TXTORCON_RM_PY3_FILE
|
|
rm -f $(TARGET_DIR)/usr/lib/python*/site-packages/txtorcon/controller_py3.py
|
|
endef
|
|
|
|
PYTHON_TXTORCON_POST_INSTALL_TARGET_HOOKS += PYTHON_TXTORCON_RM_PY3_FILE
|
|
endif
|
|
|
|
$(eval $(python-package))
|