mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-09 06:10:17 +03:00
Like for other packages sharing the same version number, we can't rely on Make variable expansion. It's working by chance since avro-c is sorted before python-avro by the Buildroot main Makefile [1]. [1] https://git.buildroot.net/buildroot/tree/Makefile?h=2022.02.1#n533 Signed-off-by: Romain Naour <romain.naour@gmail.com> Cc: Titouan Christophe <titouanchristophe@gmail.com> [yann.morin.1998@free.fr: duplicate comment] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
17 lines
552 B
Makefile
17 lines
552 B
Makefile
################################################################################
|
|
#
|
|
# python-avro
|
|
#
|
|
################################################################################
|
|
|
|
# When updating the version, please also update python-avro
|
|
PYTHON_AVRO_VERSION = 1.11.0
|
|
PYTHON_AVRO_SITE = \
|
|
https://www-eu.apache.org/dist/avro/avro-$(PYTHON_AVRO_VERSION)/py
|
|
PYTHON_AVRO_SOURCE = avro-$(PYTHON_AVRO_VERSION).tar.gz
|
|
PYTHON_AVRO_LICENSE = Apache-2.0
|
|
PYTHON_AVRO_LICENSE_FILES = avro/LICENSE
|
|
PYTHON_AVRO_SETUP_TYPE = setuptools
|
|
|
|
$(eval $(python-package))
|