mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-27 07:23:30 +08:00
d80339c965
Matplotlib is a Python 2D plotting library which produces publication quality figures in a variety of hardcopy formats and interactive environments across platforms. More information is available at: https://matplotlib.org/. Signed-off-by: Jugurtha BELKALEM <jugurtha.belkalem@smile.fr> [Peter: use Python-2.0 for license, fix license file, add host-pkgconf] Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
17 lines
682 B
Makefile
17 lines
682 B
Makefile
################################################################################
|
|
#
|
|
# python-matplotlib
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_MATPLOTLIB_VERSION = 3.0.3
|
|
PYTHON_MATPLOTLIB_SOURCE = matplotlib-$(PYTHON_MATPLOTLIB_VERSION).tar.gz
|
|
PYTHON_MATPLOTLIB_SITE = https://files.pythonhosted.org/packages/26/04/8b381d5b166508cc258632b225adbafec49bbe69aa9a4fa1f1b461428313
|
|
PYTHON_MATPLOTLIB_LICENSE = Python-2.0
|
|
PYTHON_MATPLOTLIB_LICENSE_FILES = LICENSE/LICENSE
|
|
PYTHON_MATPLOTLIB_DEPENDENCIES = host-pkgconf freetype host-python-numpy \
|
|
libpng python-cycler
|
|
PYTHON_MATPLOTLIB_SETUP_TYPE = setuptools
|
|
|
|
$(eval $(python-package))
|