f700463c66
The file changed from COPYING.txt to LICENSE, fixes: http://autobuild.buildroot.net/results/c40/c40e9b6030584a4fd8b3e46f78f6d0702d1dc11e/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
26 lines
698 B
Makefile
26 lines
698 B
Makefile
################################################################################
|
|
#
|
|
# protobuf
|
|
#
|
|
################################################################################
|
|
|
|
PROTOBUF_VERSION = v2.6.1
|
|
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))
|