d10d5b0826
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
29 lines
847 B
Makefile
29 lines
847 B
Makefile
################################################################################
|
|
#
|
|
# protobuf
|
|
#
|
|
################################################################################
|
|
|
|
# When bumping this package, make sure to also verify if the
|
|
# python-protobuf package still works, as they share the same
|
|
# version/site variables.
|
|
PROTOBUF_VERSION = v3.0.0
|
|
PROTOBUF_SITE = $(call github,google,protobuf,$(PROTOBUF_VERSION))
|
|
PROTOBUF_LICENSE = BSD-3c
|
|
PROTOBUF_LICENSE_FILES = LICENSE
|
|
# no configure script
|
|
PROTOBUF_AUTORECONF = YES
|
|
|
|
# N.B. Need to use host protoc during cross compilation.
|
|
PROTOBUF_DEPENDENCIES = host-protobuf
|
|
PROTOBUF_CONF_OPTS = --with-protoc=$(HOST_DIR)/usr/bin/protoc
|
|
|
|
PROTOBUF_INSTALL_STAGING = YES
|
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
|
PROTOBUF_DEPENDENCIES += zlib
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|